Webhooks
The Webhooks feature allows you to configure endpoints on your server to receive real-time event notifications from our system. By setting up a webhook, you can automate workflows, track updates, or respond to specific events programmatically.
GET List of webhooks
DELETE Delete your webhook
Retrieves your configured webhooks list
Your credential's unique identifier key
Your timezone
List of your configured webhooks
Unauthorized access due to invalid credentials, invalid or expired JWT token
Your key, your credentials or your JWT token are invalid, or you don't have access for this resource
An unexpected error has been raised durig this process
GET /business/v1/settings/webhooks HTTP/1.1
Host: api.mio.id
Authorization: Bearer JWT
x-api-key: text
Accept: */*
[
{
"type": "ACTIVITY_EVENT",
"url": "https://www.mycompanyhost.com/my-webhook",
"secret": "my-32-bytes-sized-secret",
"authorization": {
"type": "BASIC_AUTH",
"value": {
"username": "my-user-name",
"password": "my-secure-password"
}
},
"headers": {
"Content-Type": "application/json"
}
}
]
Creates a new or updates an existent webhook for integration
Your credential's unique identifier key
Your timezone
ACTIVITY_EVENT
Possible values: https://www.mycompanyhost.com/my-webhook
my-32-bytes-sized-secret
{"Content-Type":"application/json"}
Your webhook has been created or updated on your configurations successfully
No content
Your request metadata or your payload contains incorrect values
Unauthorized access due to invalid credentials, invalid or expired JWT token
Your key, your credentials or your JWT token are invalid, or you don't have access for this resource
An unexpected error has been raised durig this process
PUT /business/v1/settings/webhooks HTTP/1.1
Host: api.mio.id
Authorization: Bearer JWT
x-api-key: text
Content-Type: application/json
Accept: */*
Content-Length: 262
{
"type": "ACTIVITY_EVENT",
"url": "https://www.mycompanyhost.com/my-webhook",
"secret": "my-32-bytes-sized-secret",
"authorization": {
"type": "BASIC_AUTH",
"value": {
"username": "my-user-name",
"password": "my-secure-password"
}
},
"headers": {
"Content-Type": "application/json"
}
}
No content
Removes from your webhook list the item for the specified ID
my-webhook-id
Your credential's unique identifier key
Your timezone
Your webhook has been removed from your configurations successfully
No content
Your request metadata or your payload contains incorrect values
Unauthorized access due to invalid credentials, invalid or expired JWT token
Your key, your credentials or your JWT token are invalid, or you don't have access for this resource
No resource found for specified identifier
An unexpected error has been raised durig this process
DELETE /business/v1/settings/webhooks/{id} HTTP/1.1
Host: api.mio.id
Authorization: Bearer JWT
x-api-key: text
Accept: */*
No content
Last updated