Represents search criteria for custom data items.

interface CustomDataSearchObject {
    CustomDataCategory: number | CustomDataCategoryObject;
    ExactMatch: boolean;
    Key: string;
    PageIndex: number;
    PerPage: number;
    Query: string;
}

Properties

CustomDataCategory: number | CustomDataCategoryObject

Specifies the category of custom data to search within. Can be either a category ID (number) or a detailed CustomDataCategoryObject.

ExactMatch: boolean

Indicates whether to perform an exact match search.

Key: string

The key or field to search within custom data items.

PageIndex: number

The index of the page to retrieve.

PerPage: number

The number of items per page to retrieve.

Query: string

The query string to search for within the specified key or field.