Skip to main content
GET
/
api
/
webhook
Get Webhook URL
curl --request GET \
  --url https://api.mayerex.com/api/webhook \
  --header 'Authorization: Bearer <token>'
{
  "createURL": "<string>",
  "updateURL": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

OK

createURL
string | null

The URL of the create webhook, set this to null to disable the webhook

updateURL
string | null

The URL of the update webhook, set this to null to disable the webhook

I