SapccApiGetTicketsRequest
Request parameters for getTickets operation in SapccApi. SapccApiGetTicketsRequest
interface SapccApiGetTicketsRequest {
readonly baseSiteId: string;
readonly currentPage?: number;
readonly fields?: string;
readonly pageSize?: number;
readonly sort?: string;
readonly userId: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
baseSiteId | Required | string | Base site identifier {string} SapccApiGetTickets |
currentPage | Optional | number | The current result page requested. Default value is 0. {number} SapccApiGetTickets |
fields | Optional | string | Response configuration. This is the list of fields that should be returned in the response body. Examples: BASIC,DEFAULT,FULL {string} SapccApiGetTickets |
pageSize | Optional | number | Number of results returned per page. Example: 20 {number} SapccApiGetTickets |
sort | Optional | string | Sorting method applied to the return results. Possible values are: byDate and byTicketId. {string} SapccApiGetTickets |
userId | Required | string | User identifier or one of the literals : 'current' for currently authenticated user, 'anonymous' for anonymous user {string} SapccApiGetTickets |