Skip to main content
GET
/
api
/
partner
/
v1
/
reservations
/
{id}
Get a reservation
curl --request GET \
  --url https://app.eat-now.io/api/partner/v1/reservations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "external_id": "<string>",
    "start_at": "2023-11-07T05:31:56Z",
    "party_size": 2,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "customer": {
      "id": "<string>",
      "name": "<string>",
      "email": "jsmith@example.com",
      "phone_number": "<string>"
    },
    "room": {
      "id": "<string>",
      "name": "<string>"
    },
    "tables": [
      {
        "id": "<string>",
        "name": "<string>",
        "min_pax": 123,
        "max_pax": 123
      }
    ],
    "waiter": {
      "id": "<string>",
      "name": "<string>"
    },
    "shift": {
      "id": "<string>",
      "name": "<string>",
      "start_time": "<string>",
      "end_time": "<string>"
    },
    "discount": {
      "id": "<string>",
      "value": 123,
      "message": "<string>"
    },
    "prescriber": {
      "id": "<string>",
      "name": "<string>",
      "phone_number": "<string>"
    },
    "custom_message": "<string>",
    "allergies": "<string>",
    "metadata": {},
    "feedback": {
      "rating": 123,
      "comment": "<string>",
      "answer": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "answered_at": "2023-11-07T05:31:56Z"
    },
    "cancellation_reason": "<string>",
    "attached_files": [
      "<string>"
    ],
    "tags": [
      "<string>"
    ],
    "send_followup_email": true,
    "is_table_definitive": true,
    "is_force_inserted": true,
    "total_amount_paid": 123,
    "payment_summary": {
      "total_amount": 123,
      "paid_amount": 123,
      "authorized_amount": 123,
      "pending_amount": 123,
      "refunded_amount": 123,
      "statuses": []
    },
    "payments": [
      {
        "id": "<string>",
        "provider_id": "<string>",
        "amount": 123,
        "quantity": 123,
        "unit_price": 123,
        "percent_of_total": 123,
        "is_refundable": true,
        "expiration_date": "2023-11-07T05:31:56Z",
        "max_cancellation_date": "2023-11-07T05:31:56Z",
        "authorized_at": "2023-11-07T05:31:56Z",
        "capture_deadline": "2023-11-07T05:31:56Z",
        "captured_at": "2023-11-07T05:31:56Z",
        "voided_at": "2023-11-07T05:31:56Z",
        "linked_product": {
          "id": "<string>",
          "name": "<string>"
        },
        "linked_variant": {
          "id": "<string>",
          "name": "<string>"
        },
        "created_at": "2023-11-07T05:31:56Z",
        "updated_at": "2023-11-07T05:31:56Z"
      }
    ],
    "seated_at": "2023-11-07T05:31:56Z",
    "left_at": "2023-11-07T05:31:56Z",
    "sensitive_data_included": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.eat-now.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
default:your_token_here
required

Restaurant-scoped partner API token passed as Authorization: Bearer <token>.

Path Parameters

id
string
required

EatNow reservation identifier used as the canonical partner API resource id.

Minimum string length: 1

Response

Reservation detail

data
object
required