Referencia de APIOrganization
Create Organization webhook
← Back to full API reference
POST
/v1/organization/webhookAuth required- Requires organization permissions for this resource.
- Validated by Zod schema: postWebhook.
- This route is commonly used as a webhook endpoint.
Request details
Body fields
| Field | Required | Description |
|---|---|---|
| name | Yes | Type: string |
| url | Yes | Type: string |
| subscribed | Yes | Type: arrayExample: |
| subscribed[] | Yes | Enum-like validator generated by zodFromObj |
Default payloads
Path params
json
{}Query
json
{}Body
json
{
"name": "string",
"url": "string",
"subscribed": [
"string"
]
}Sample response
json
{
"success": true,
"message": "Sample response placeholder for POST /v1/organization/webhook"
}