Gestiono
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

FieldRequiredDescription
nameYesType: string
urlYesType: string
subscribedYesType: arrayExample:
subscribed[]YesEnum-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"
}