v1
latestOpenAPI 3.0.02026-07-24126202516.7 KBCallbacks
Update Callback
Update an existing Callback using a given :id. You can change the URL, the object_type and whether the Callback is enabled or disabled.
patch/callbacks/{id}
Path parameters
idstring required
Callback ID
Request body
Example request
{
"url": "https://httpbin.org",
"object_type": "users",
"enabled": "true"
}Response
OK
Example response
{
"callbacks": {
"id": "f92d4ca1-4ee5-43f3-9e34-ca5f759c5e76",
"description": "Users Callback",
"url": "https://httpbin.org/post",
"object_type": "users",
"enabled": true
}
}