Skip to main content
POST
/
v1
/
notifications
/
webhooks
/
settings
Create a new Webhook Settings
curl --request POST \
  --url https://sandbox-api.borderless.xyz/v1/notifications/webhooks/settings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "<string>",
  "enabled": true
}
'
{
  "id": "<string>",
  "url": "<string>",
  "enabled": true,
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
url
string<uri>
required
enabled
boolean

Response

Successfully created Webhook Settings data.

id
string
required
url
string
required
enabled
boolean
required
createdAt
string<date-time>
required
updatedAt
string<date-time>
required