Confirm a webhook subscription
Terac POSTs one signed webhook.ping to target_url. Answer 2xx and the subscription starts receiving events. This is also the way to test a receiver end to end, since it exercises the real signature headers.
Authorization
apiKey API key as Bearer token: Authorization: Bearer
In: header
Path Parameters
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
curl -X POST "https://terac.com/api/external/v2/hooks/subscriptions/string" \ -H "Content-Type: application/json" \ -d '{}'{
"id": "string",
"target_url": "string",
"event_types": [
"submission.status.change"
],
"is_enabled": true,
"confirmed_at": "string",
"disabled_at": "string",
"disabled_reason": "string",
"created_at": "string",
"updated_at": "string"
}{
"code": "BAD_REQUEST",
"message": "Invalid input data",
"issues": []
}{
"code": "UNAUTHORIZED",
"message": "Authorization not provided",
"issues": []
}{
"code": "FORBIDDEN",
"message": "Insufficient access",
"issues": []
}{
"code": "NOT_FOUND",
"message": "Not found",
"issues": []
}{
"code": "INTERNAL_SERVER_ERROR",
"message": "Internal server error",
"issues": []
}Update a webhook subscription PATCH
event_types replaces the current list rather than adding to it. Changing target_url clears the confirmation, since the new host has not accepted a ping yet. Set is_enabled true to recover a subscription Terac disabled after sustained failure.
Delete a webhook subscription DELETE
Next Page