interface GetOptionsForContext {
    contextId: number;
    fieldId: string;
    maxResults?: number;
    onlyOptions?: boolean;
    optionId?: number;
    startAt?: number;
}

Properties

contextId: number

The ID of the context.

fieldId: string

The ID of the custom field.

maxResults?: number

The maximum number of items to return per page.

onlyOptions?: boolean

Whether only options are returned.

optionId?: number

The ID of the option.

startAt?: number

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