Skip to main content

Get (just) all (deleted) EventDates

GET 

/eventdate/:type

Returns all EventDates of the requested Company. The "trashed" operation returns all EventDates including deleted EventDates. The "justtrashed" operation returns only the deleted EventDates.

Note, "normal" will yield the same result as without a type.

Request

Path Parameters

    type stringrequired

    Possible values: [normal, trashed, justtrashed]

    Type of operations for querying deleted EventDates.

    "normal"
    Returns all the EventDates except those which are deleted.
    "trashed"
    Returns all the EventDates including those which are deleted.
    "justtrashed"
    Returns all and only the deleted EventDates.

Responses

EventDates found.

Schema

  • Array [

  • guid uuidrequired

    The guid of the EventDate

    event_id uuidrequired

    The guid of the Event for this EventDate.

    start ISO 8601required

    The start of the date range.

    end ISO 8601required

    The end of the date range. Must be later than start date.

    seats_event_key string

    Possible values: <= 255 characters

    The Event key (See Seats.io).

    facebook_event_id string

    Possible values: <= 255 characters

    The Facebook event ID.

    seated boolean

    Whether an EventDate is seated or not.

  • ]

Loading...