Delete a webhook in the Pulsifi system.
Headers
- Accept :
application/json
- Content-Type :
application/json
- Authorization :
Bearer {access_token}
Path Parameters
webhook_id
nullable string (uuid) RequiredThe unique identifier for the webhook created in the Pulsifi system.
Response
200 OK.
Parameters
DELETE /partner/v1.0/webhooks/:webhook_id
curl -X DELETE 'https://api.pulsifi.me/partner/v1.0/webhooks/{webhook_id}' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access_token}' \
-H 'Content-Type: application/json' \
Response
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"partner_id": 1,
"name": "Webhook 1",
"url": "https://example.com/my/webhook/endpoint",
"events": ["candidate_application_result_ready"],
"status": "active",
"is_deleted": true,
"created_at": "2024-10-04T04:06:55.124Z",
"created_by": 1
}