Overview
Entities
Legal Entity
Account Authorization Webhooks
Virtual Account
Transaction
Card
Card Group
Webhooks
Update webhook
Update a webhook endpoint
PATCH
/
webhook
/
{webhookId}
Copy
Ask AI
curl --request PATCH \
--url https://api.joinslash.com/webhook/{webhookId} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '{
"status": "archived",
"reason": "<string>"
}'
Copy
Ask AI
{
"id": "<string>",
"createdAt": "<string>",
"archivedAt": "<string>",
"url": "<string>",
"name": "<string>"
}
Authorizations
Authentication from public API requests
Path Parameters
Body
application/json
Response
200
application/json
OK
The response is of type object
.
Copy
Ask AI
curl --request PATCH \
--url https://api.joinslash.com/webhook/{webhookId} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '{
"status": "archived",
"reason": "<string>"
}'
Copy
Ask AI
{
"id": "<string>",
"createdAt": "<string>",
"archivedAt": "<string>",
"url": "<string>",
"name": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.