GET /reservations.json

Get a list of reservation models.

Reservations

GET https://app.reserveinstore.com/api/v1/reservations.json

Fetches a list of reservations made by customers to the store.

Query Parameters

Headers

[
    {
        "id": 1,
        "location_id": 3, // Internal Reserve In-store location ID (not the Platform/Shopify one - see /locations endpoint)
        "customer": {
            "name": "John Doe",
            "email": "john.doe@example.com",
            "phone": "1231231231231",
            "instructions": "I'll be there on Monday by 3pm."
        },
        "cart": {
            "items": [
                {
                    "product_id": "9423387917", // Shopify/platform product ID.
                    "variant_id": "34639503181" // Shopify/platform variant ID.
                }
            ]
        },
        "fulfilled": false, // True if the reservation has already been fulfilled, false if not.
        "created_at": "2019-05-10T18:37:48.260Z",
        "updated_at": "2019-05-10T22:11:50.739Z"
    }
]

Last updated