Tyson Foods · Example Payload

Tyson Foods Get Orders Example

B2B IntegrationEDIFoodFortune 100Supply Chain

Tyson Foods Get Orders Example is an example object payload from Tyson Foods, 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://api.tysonfoods.com/orders",
    "headers": {
      "Authorization": "Bearer {access_token}",
      "Content-Type": "application/json"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "orders": [
        {
          "id": "PO-2026-001234",
          "partnerId": "PARTNER-789",
          "status": "confirmed",
          "items": [
            {
              "productId": "TF-CHICKEN-BREAST-10LB",
              "quantity": 50
            },
            {
              "productId": "TF-GROUND-BEEF-5LB",
              "quantity": 25
            }
          ],
          "createdAt": "2026-05-01T14:30:00Z"
        }
      ]
    }
  }
}