Events v2.Webhook
REGION.US
Update Webhook Endpoint
Updates a Webhook Endpoint.
patch/events/v2/webhook-endpoints/{webhookEndpoint.id}
Path parameters
webhookEndpoint.idstring required
A Tink unique identifier for the webhook endpoint.
Request body
Example request
{
"webhookEndpoint": {
"description": "Alice's webhook",
"disabled": false,
"enabledEvents": [
"refresh:finished"
],
"url": "https://endpoint.example.com/"
}
}Response
A successful response.
Example response
{
"createdAt": "2022-11-30T15:27:59Z",
"description": "Alice's webhook",
"disabled": false,
"enabledEvents": [
"refresh:finished"
],
"id": "d8f37f7d19c240abb4ef5d5dbebae4ef",
"updatedAt": "2022-11-30T15:27:59Z",
"url": "https://endpoint.example.com/"
}