Request

Requests to your URL will always adhere to the following criteria

  • POST, PUT or PATCH method

  • The Content-Type will always be application/json

  • Payload event corresponding triggered action like "create", "update" or "delete"

Example of Body

{
  "event": "<notification_name>",
  "resource": {
    "id": "00000000-0000-0000-0000-000000000000",
    "data": {
      "shipmentId": "00000000-0000-0000-0000-000000000000",
      "orderReference": "REF-000000"
    }
  },
  "actor": {
    "type": "user" | "application",
    "id": "00000000-0000-0000-0000-000000000000",
    "societyId": "384221164-00062",
    "societyName": "Technema"
  },
  "params": {
    "orderReference": "REF-000000"
  }
}

Last updated