Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 39.6 KB

File metadata and controls

13 lines (10 loc) · 39.6 KB

GetTableAssignmentRequest

Fields

Field Type Required Description Example
id String ✔️ ID of an event. 04ca6ae2-0dc3-487b-953e-86d6abbdf7d3
seatingId String ✔️ ID of a seating. b054dd32-efb6-444a-b4a6-a797a18315ef
limit Optional<Long> The maximum number of records to return per page. 100
token Optional<String> The continuation token returned from a previous class. This must be a valid UUID v4 if provided.
This will override any other pageable parameters provided.
0e28af57-511f-47ab-ae46-46cd1ca51a1a
filter Optional<String> A filter string passed in the query parameter of the request, narrows search results and supports the combination of logical and comparison operators.
The filter adheres to the pattern filter='field' comparisonType 'value'.

There is only one comparison type that can be used in filter expressions:
* equal: eq

The following fields are filterable:
* seating.id (eq)
* attendee.id (eq)
* table.id (eq)
* seat.id (eq)

The following operators are available:
* and
* or
seating.id eq 'ad6df5aa-f21f-47e6-9c48-8d3a7831ad5f' and attendee.id eq 'bdcb1fba-0fb3-46d2-b4e7-47ace9bc7907'
expand List<SeatingAssignmentExpand> This endpoint allows you to request additional information as an expanded response using the expand query parameter. The expanded entity is retrieved and displayed inline for each specified expand value.

An object contains the ID of a related object in its response properties. For example, a seating assignment will have the table or seat ID associated with the assignment. You can expand these objects, along with others, in line using the expand query parameter.

You can expand multiple objects at the same time by identifying multiple items in the expand array.

The respective scopes for each expansion are required.

The following fields are expandable:
* seating
* Scope: seating/event-seatings:read
* Reference: Get Seating
* table
* Scope: seating/tables:read
* Reference: Get Table
* seat
* Scope: seating/seats:read
* Reference: Get Seat
[
"seating",
"table"
]