{
  "info": {
    "name": "Trusted Delivery Sandbox Demo",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
    "description": "No production endpoint or secret."
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://sandbox.example.invalid/v1"
    },
    {
      "key": "token",
      "value": "REPLACE_IN_LOCAL_ENVIRONMENT"
    }
  ],
  "item": [
    {
      "name": "Create consignment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Authorization",
            "value": "Bearer {{token}}"
          },
          {
            "key": "Idempotency-Key",
            "value": "{{$guid}}"
          },
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": "{{baseUrl}}/consignments",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"recipient\": {\n    \"type\": \"legal_entity\",\n    \"id\": \"DEMO-001\"\n  },\n  \"contentHash\": \"sha256:demo\",\n  \"callbackUrl\": \"https://client.example.invalid/webhooks/delivery\"\n}"
        }
      }
    }
  ]
}