Get Webhook
Retrieve a specific webhook by ID.
HTTP Request
URL Parameters
Example Request
Response
Response Body
See List Webhooks for detailed field descriptions.
Retrieve a specific webhook by ID.
$ GET https://app.resemble.ai/api/v2/agents/{agent_uuid}/webhooks/{id}
| Parameter | Type | Description |
|---|---|---|
| agent_uuid | string | The agent’s UUID |
| id | integer | The webhook ID |
$ curl --request GET "https://app.resemble.ai/api/v2/agents/550e8400-e29b-41d4-a716-446655440000/webhooks/1" \ > -H "Authorization: Bearer YOUR_API_TOKEN" \ > -H "Content-Type: application/json"
1 { 2 "success": true, 3 "item": { 4 "id": 1, 5 "webhook_type": "pre_call", 6 "webhook_config": { 7 "api_schema": { 8 "url": "https://api.example.com/pre-call", 9 "method": "POST" 10 }, 11 "assignments": [], 12 "response_timeout_secs": 10 13 }, 14 "created_at": "2025-01-27T10:00:00Z", 15 "updated_at": "2025-01-27T10:00:00Z" 16 } 17 }
See List Webhooks for detailed field descriptions.
