1. Webhooks
Pibox public API
0.6.2
  • 0.6.2
  • 0.6.3
  • v1
    • Teams
      • Get Teams
    • Groups
      • Get Groups
    • Projects
      • Create Project
      • Get Projects by Group
      • Get Non Group Projects
      • Get Chat History
      • Chat Message
    • Files
      • Create Folder
      • Get Files by Folder
      • Get Folder URL
      • Update Folder Properties
      • Delete File
      • Upload from External Source
      • Get File Info
      • Generate Track Tags
      • File Upload
    • Tasks
      • Get Task Template
      • Load Tasks from Template
      • Get Tasks by Folder
    • Webhooks
      • Create Webhook Endpoint
        POST
      • Get Webhook Endpoints
        GET
      • Delete Webhook Endpoint
        POST
  • Schemas
    • v1
      • Team
      • Track Info
      • Video Info
      • Image Info
      • AI Tags
      • Empty Schema
  1. Webhooks

Create Webhook Endpoint

POST
https://api.pibox.com/v1/webhooks/create_endpoint

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.pibox.com/v1/webhooks/create_endpoint' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "event_types": ["file.uploaded"],
    "url": "https://webhook.site/e242394b-ba28-46ff-be35-f456e5562cd2"
}'
Response Response Example
{
    "date_created": "2026-02-11T13:30:29Z",
    "event_types": [
        "file.uploaded"
    ],
    "id": "d4dc71ae-074d-11f1-a5a4-065892dc723d",
    "object": "webhook_endpoint",
    "url": "https://webhook.site/e242394b-ba28-46ff-be35-f456e5562cd2"
}
Modified at 2026-02-12 14:55:25
Previous
Get Tasks by Folder
Next
Get Webhook Endpoints
Built with