Webhooks
remove webhook
Delete a webhook
For custom components:
RaiselyComponents.api.one('webhooks', '{uuid}').delete(data = {}, params = {}, headers = {}) => Promise<{result}>
:fa-gears: See Restie Response Data for a more detailed overview of responses through the client wrapper
delete/webhooks/{uuid}
Path parameters
uuidstring required
The uuid of the record
Headers
Authorizationstring
A valid HTTP Bearer token, required to access private records.
Response
The deleted Webhook record
Example response
{
"data": {
"uuid": "f89f8270-4a7e-11eb-930b-390f490b0615",
"createdAt": "2020-12-30T09:11:16.247Z",
"campaignUuid": "f2a3bcb0-96d8-11e9-8a7b-47a01a90ec39",
"url": "https://myapp.com/raisely"
}
}