tenant-webhook-read
or tenant-admin
Gets the webhooks associated with the current API key.
OK - Returns the Webhooks response.
Unauthorized
tenant-webhook-write
or tenant-admin
Creates a new webhook associated with the current API key.
OK - Returns the Webhook response.
Unauthorized
{- "destination": "string",
- "events": [
- "string"
], - "maxBatchSize": "string",
- "maxBatchTimeDelay": "string",
- "isActive": true
}
tenant-webhook-read
or tenant-admin
Gets a list of Webhook Event Types.
OK - Returns the Webhook Event Types response.
Unauthorized
tenant-webhook-write
or tenant-admin
Updates an existing webhook
OK
Unauthorized
{- "destination": "string",
- "events": [
- "string"
], - "maxBatchSize": "string",
- "maxBatchTimeDelay": "string",
- "isActive": true
}
tenant-webhook-read
or tenant-admin
Get the set of webhook batches identified by the webhook ID.
OK - Returns the paged Webhook Batch response.
Unauthorized
{- "currentPage": 0,
- "pageCount": 0,
- "pageSize": 0,
- "rowCount": 0,
- "totalCount": 0,
- "results": [
- {
- "batchId": "string",
- "creationTimestamp": 0,
- "events": [
- {
- "eventType": "string",
- "messageId": "8540d774-4863-4d2b-b788-4ecb19412e85"
}
], - "eventTypes": [
- "string"
], - "lastDeliveryAttemptStatus": "string",
- "lastDeliveryAttemptTimestamp": 0,
- "totalEvents": 0
}
]
}
tenant-webhook-read
or tenant-admin
Get the webhook batch identified by the webhook ID & batch ID.
OK - Returns the Webhook Batch response.
Unauthorized
tenant-webhook-read
or tenant-admin
Get the webhook batch delivery attempt identified by the subscription ID, batch ID & delivery attempt ID.
OK - Returns the Webhook Batch response.
Unauthorized
{- "accountId": "string",
- "batchId": "string",
- "deliveryAttemptId": "string",
- "deliveryTimestamp": 0,
- "subscriptionId": "string",
- "tenantId": "string",
- "deliveryStatus": "Scheduled",
- "error": "string",
- "requestHeaders": "string",
- "responseStatusCode": 0,
- "response": "string"
}
tenant-webhook-read
or tenant-admin
Get the set of webhook batch delivery attempts identified by the subscription ID & batch ID.
OK - Returns the paged Webhook Batch response.
Unauthorized
{- "currentPage": 0,
- "pageCount": 0,
- "pageSize": 0,
- "rowCount": 0,
- "totalCount": 0,
- "results": [
- {
- "accountId": "string",
- "batchId": "string",
- "deliveryAttemptId": "string",
- "deliveryTimestamp": 0,
- "subscriptionId": "string",
- "tenantId": "string",
- "deliveryStatus": "Scheduled",
- "error": "string",
- "requestHeaders": "string",
- "responseStatusCode": 0,
- "response": "string"
}
]
}
tenant-webhook-writer
or tenant-admin
Schedule a new delivery attempt for the webhook batch identified by the webhook ID & batch ID.
OK - Returns the Webhook Batch Delivery Attempt ID.
Unauthorized