Get dates and timeslots

Retrieve the available dates and/or timeslots for the event. This is only necessary if your event is continuous.

GET https://api.eventgoose.com/v1/checkouts/dates

Authentication

Authenticate yourself using your organisation api token

Parameters

event_id
string
required

The event identifier you want to order tickets from.

shop_id
string
required

The shop identifier you want to order tickets from.

tickets[{id}]
integer
required

An array of tickets with the amount as value. Note: multiple tickets can be added.

key: tickets[{id}]    value: amount

Response

200 application/json

A list of dates and/or timeslots is returned.

    HTTP/1.1 200 OK
Content-Type: application/json

[
    {
        "date": "2021-01-02",
        "timeslots": [
            {
                "id": "gbKDopEA6ZO8YW7d",
                "slot": "10:00"
            },
            {
                "id": "LbyYeJ2JjJ2RAXBP",
                "slot": "12:00"
            }
        ]
    },
    {
        "date": "2021-01-03",
        "timeslots": [
            {
                "id": "e6kQv1OPA120JWdn",
                "slot": "10:00"
            },
            {
                "id": "bjByJwEnJ5EmqZXN",
                "slot": "12:00"
            }
        ]
    },
    {  },
    {  },
]