API Overview
Authentication
Journal Entry
Ledger
Reports
Transaction
Request
Webhooks
Update the webhook configuration
PATCH
/
v0
/
webhook
Copy
Ask AI
curl --request PATCH \
--url https://api.sandbox.getasset.com/v0/webhook \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"url": "<string>",
"headers": [
{}
],
"enabled": true
}'
Copy
Ask AI
{
"data": {
"tenant_id": "<string>",
"url": "<string>",
"headers": [
{}
],
"enabled": true
}
}
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Body
application/json
Response
200
application/json
Successful Response
The response is of type object
.
Copy
Ask AI
curl --request PATCH \
--url https://api.sandbox.getasset.com/v0/webhook \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"url": "<string>",
"headers": [
{}
],
"enabled": true
}'
Copy
Ask AI
{
"data": {
"tenant_id": "<string>",
"url": "<string>",
"headers": [
{}
],
"enabled": true
}
}
Assistant
Responses are generated using AI and may contain mistakes.