Mailbox API
Create an event webhook subscription — NOT YET AVAILABLE
Deprecated
POST
/events/subscriptions
const url = 'https://api.customers.ac/api/mailbox/v1alpha1/events/subscriptions';const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://api.customers.ac/api/mailbox/v1alpha1/events/subscriptions \ --header 'Authorization: Bearer <token>'Not yet available. This endpoint is not routed. Calling it today returns
404.
Planned: push delivery of the same events as GET /events, so you can react without polling.
No request or response shape is committed yet. Do not implement against it.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Not routed. This endpoint does not exist yet.
Media typeapplication/json
sending.ac error
The envelope used outside the provider-native surfaces.
object
error
required
object
code
required
string
message
required
string
Example
{ "error": { "code": "service.unavailable" }}