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