/notifications/webhooks

Body·
  • from
    Type: object ·
    required
  • to
    Type: object ·
    required
  • templateData
    Type: object | null
Responses
Request Example for post/notifications/webhooks
curl /rest/notifications/v1000/notifications/webhooks \
  --request POST \
  --header 'Content-Type: application/json' \
  --header 'Authorization: YOUR_SECRET_TOKEN' \
  --data '{
  "from": {
    "email": "",
    "name": null
  },
  "to": {
    "email": "",
    "name": null
  },
  "templateData": null
}'
{
  "errorCode": 1,
  "message": null,
  "errors": [
    {
      "message": null,
      "type": null
    }
  ],
  "warnings": [
    "string"
  ]
}