Skip to main content
POST
/
webhooks
/
{id}
/
reenable
cURL
curl --request POST \
  --url https://api.useanima.sh/v1/webhooks/{id}/reenable \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "success": "<unknown>",
  "deliveryId": "<string>"
}

Authorizations

Authorization
string
header
required

JWT Bearer token obtained from authentication. Pass as: Authorization: Bearer

Path Parameters

id
string
required

Unique identifier of the webhook to re-enable

Pattern: ^[0-9a-z]+$

Body

application/json

Request body for testing and re-enabling a disabled webhook

Response

200 - application/json

OK

Re-enable result after successful test delivery

success
any
required

Always true when the webhook was re-enabled

deliveryId
string
required

Unique identifier of the test delivery sent

Pattern: ^[0-9a-z]+$