Skip to main content
POST
/
notifications
/
v1
/
subscriptions
/
{id}
/
enable
Enable a webhook subscription.
curl --request POST \
  --url https://sandbox-api.sandbox.lemmax.com/notifications/v1/subscriptions/{id}/enable \
  --header 'Authorization: Bearer <token>'
{
  "error": {
    "reason": "Bad Request",
    "status": 400,
    "message": "invalid params"
  }
}

Authorizations

Authorization
string
header
required

access_token returned by the /auth/v1/oauth2/tokens API call.

Path Parameters

id
string<uuid>
required

ID of the webhook subscription.

Required string length: 36
Pattern: ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$

Response

OK