Svix Emporix Shared Account
Retrieves a Svix magic login link (authentication embedded) and an authentication token needed to connect a tenant to their consumer application portal.
Required scopes
webhook.subscription_manage
Your Emporix tenant's name.
Note: The tenant name should always be provided in lowercase.
Unauthorized
Given authorization scopes are not sufficient and do not match the scopes required by the endpoint.
The requested resource does not exist.
Some server-side error occurred. Details are provided in the response payload.
GET /webhook/{tenant}/dashboard-access HTTP/1.1
Host: api.emporix.io
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"url": "https://app.svix.com/login#key=eyJhcHBJZCI6ICJhcHBfMXRSdFl",
"token": "appsk_kV3ts5tKPNJN4Dl25cMTfUNdmabxbX0O"
}
Retrieves statistics on the number of emitted events and provides information on the limit of webhook notifications configured for a specific tenant.
Required scopes
webhook.subscription_read
Your Emporix tenant's name.
Note: The tenant name should always be provided in lowercase.
Month from which statistics should be retrieved.
Note: The value should be provided in the "YYYY-MM" format.
Month to which statistics should be retrieved.
Note: The value should be provided in the "YYYY-MM" format.
OK
Unauthorized
Given authorization scopes are not sufficient and do not match the scopes required by the endpoint.
Some server-side error occurred. Details are provided in the response payload.
GET /webhook/{tenant}/statistics HTTP/1.1
Host: api.emporix.io
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"monthStatistics": [
{
"statisticsMonth": "2022-09",
"succesfullySentWebhooks": 8994
},
{
"statisticsMonth": "2022-08",
"succesfullySentWebhooks": 2137
}
],
"webhooksLimit": 10000
}
Was this helpful?