Webhooks
update webhook
Update the specified webhook.
For custom components:
RaiselyComponents.api.one('webhooks', '{uuid}').patch(data = {}, params = {}, headers = {}) => Promise<{result}>
:fa-gears: See Restie Response Data for a more detailed overview of responses through the client wrapper
patch/webhooks/{uuid}
Path parameters
uuidstring required
The uuid of the record
Query parameters
privateboolean
Returns the full record when authenticated
Headers
Authorizationstring
A valid HTTP Bearer token, required to access private records.
Request body
Example request
{
"data": {
"url": "https://myapp.com/raisely"
}
}Response
The updated 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"
}
}