Get webhook configuration by ID

Retrieve a specific webhook configuration by its ID

Required scope: convai:read

Path Parameters
  • id
    Type: string
    required

    ID of the webhook configuration to retrieve

Responses
  • application/json
  • application/json
  • 404

    Webhook configuration not found

  • 500

    Internal server error

Request Example for get/webhooks/{id}
curl 'https://api.simwood.com/convai/v1/webhooks/{id}' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "id": "string",
  "agent_id": null,
  "event_type": "conversation.completed",
  "url": "https://example.com",
  "request_headers": {
    "additionalProperty": "string"
  },
  "enabled": true,
  "created_at": "2026-07-18T10:26:52.935Z",
  "updated_at": "2026-07-18T10:26:52.935Z"
}