Skip to main content
This endpoint is used by the Portal.io Zapier integration. It fires when an order’s status changes in your Portal.io account.

Endpoint

GET /zapier/trigger/order

Headers

HeaderRequiredDescription
AcceptYesMust be application/json

Response

A 200 response returns the order details including status, totals, part count, and supplier breakdown.
{
  "number": 0,
  "createdDate": "2019-08-24T14:15:22Z",
  "modifiedDate": "2019-08-24T14:15:22Z",
  "status": "string",
  "total": 0,
  "partCount": 0,
  "orderSuppliers": [
    {
      "id": 0,
      "supplierName": "string",
      "sum": 0,
      "partCount": 0,
      "status": "string"
    }
  ],
  "id": 0,
  "name": "string"
}
This endpoint is designed for the Portal.io Zapier integration. If you are building a direct integration rather than using Zapier, consider using the webhook subscription endpoints instead.