TheFork · Example Payload

Thefork Pos Create Order Example

RestaurantReservationsBookingDiningPoint Of SaleMarketplace

Thefork Pos Create Order Example is an example object payload from TheFork, 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": "POST",
    "path": "{receiptOpeningUrl}",
    "headers": { "Authorization": "Bearer <access_token>", "CustomerId": "b6f0c2d4-1111-2222-3333-444455556666", "Content-Type": "application/json" },
    "body": {
      "orderId": "2c1f7e90-1a2b-4c3d-8e9f-0a1b2c3d4e5f",
      "createdAt": "2026-06-20T20:35:00Z",
      "reservationStatus": "CONFIRMED",
      "partySize": 4,
      "startTime": "2026-06-20T20:30:00Z",
      "customer": { "id": "cus_55ab", "firstName": "Camille", "lastName": "Durand", "allergies": ["peanuts"] },
      "tables": [{ "name": "T12", "areaName": "Terrace" }]
    }
  },
  "response": { "status": 204, "body": null }
}