Rutter · Example Payload

Rutter List Orders Example

AccountingB2BCommerceFinancial DataPaymentsUnified API

Rutter List Orders Example is an example object payload from Rutter, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://production.rutterapi.com/versioned/orders?access_token=acc_xyz789",
    "headers": {
      "Authorization": "Basic base64(client_id:client_secret)",
      "X-Rutter-Version": "2024-08-31"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "orders": [
        {
          "id": "ord_001",
          "customer_id": "cust_001",
          "status": "fulfilled",
          "currency": "USD",
          "total_price": 149.99,
          "line_items": [
            {
              "product_id": "prod_001",
              "quantity": 2,
              "unit_price": 74.99
            }
          ],
          "created_at": "2026-04-28T10:00:00Z",
          "updated_at": "2026-04-30T14:00:00Z"
        }
      ],
      "next_cursor": "cur_abc123"
    }
  }
}