TheFork · Example Payload

Thefork B2B Find Customer By Phone Example

RestaurantReservationsBookingDiningPoint Of SaleMarketplace

Thefork B2B Find Customer By Phone 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": "GET",
    "path": "/manager/v1/restaurants/rst_10293/customers/phone/+33612345678",
    "headers": { "Authorization": "Bearer <access_token>" }
  },
  "response": {
    "status": 200,
    "body": {
      "id": "cus_55ab",
      "firstName": "Camille",
      "lastName": "Durand",
      "email": "camille.durand@example.com",
      "phoneNumber": "+33612345678",
      "allergies": ["peanuts"],
      "dietaryRestrictions": ["vegetarian"],
      "seatingPreferences": ["terrace"]
    }
  }
}