v1
latestOpenAPI 3.0.12026-07-245277551.2 MBList person for a profile
Get all person where this profile is linked to persons/guests
Path parameters
Entity ID
Query parameters
Type of persons
Filter by relationship type
Filter by profile person roles. Returns persons matching any of the specified roles. Use comma-separated values for multiple roles.
[ "BOOKING_COORDINATOR" ]
Sort profile persons by field and direction in format: field:direction Multiple fields can be separated by semicolon. Examples: role:asc, createdAt:desc, role:asc;createdAt:desc Valid fields: role, createdAt, updatedAt Valid directions: asc, desc (default: asc) Default sort: createdAt:desc
Cursor token for pagination. Use the nextPageToken from the previous response to fetch the next page.
Usage:
- Omit or pass empty string for the first page
- Pass the nextPageToken from previous response for subsequent pages
- When nextPageToken is null in the response, you've reached the last page
Benefits over offset-based pagination:
- Consistent results even when data changes between requests
- Better performance for large datasets (no row skipping)
- No maximum page limit
Page size. Specifies the maximum number of items to return in a single response.
Limits:
- Minimum: 1
- Maximum: 500
- Default: 100
Headers
Property ID
Organization ID
Response
Person retrieved successfully
Example response
{
"data": [
{
"relationshipType": "PRIMARY",
"role": "BOOKING_COORDINATOR"
}
]
}