interface GetUiModifications {
    expand?: string | string[] | ("data" | "contexts")[];
    maxResults?: number;
    startAt?: number;
}

Properties

expand?: string | string[] | ("data" | "contexts")[]

Use expand to include additional information in the response. This parameter accepts a comma-separated list. Expand options include:

  • data Returns UI modification data.
  • contexts Returns UI modification contexts.
maxResults?: number

The maximum number of items to return per page.

startAt?: number

The index of the first item to return in a page of results (page offset).