interface GetAllFieldConfigurations {
    id?: number[];
    isDefault?: boolean;
    maxResults?: number;
    query?: string;
    startAt?: number;
}

Properties

id?: number[]

The list of field configuration IDs. To include multiple IDs, provide an ampersand-separated list. For example, id=10000&id=10001.

isDefault?: boolean

If true returns default field configurations only.

maxResults?: number

The maximum number of items to return per page.

query?: string

The query string used to match against field configuration names and descriptions.

startAt?: number

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