Search for carts using specified criteria and return matching results.
POST
/crm/v3/objects/carts/search https://api.hubapi.com
Execute a search for carts based on the specified search criteria, such as filters and properties, and retrieve the matching results.
Request Body
application/json
required
interface PublicObjectSearchRequest {
after: string;
filterGroups:FilterGroup [];
limit: number;
properties: string[];
query?: string;
sorts: string[];
}
after: string;
filterGroups:
limit: number;
properties: string[];
query?: string;
sorts: string[];
}
Responses
200 application/json
successful operation
interface CollectionResponseWithTotalSimplePublicObject2 {
paging?:Paging7 ;
results:SimplePublicObject2 [];
total: number;
}
paging?:
results:
total: number;
}
default */*
An error occurred.
interface Error {
category: string;
context?: { };
correlationId: string;
errors?:ErrorDetail [];
links?: { };
message: string;
subCategory?: string;
}
category: string;
context?: { };
correlationId: string;
errors?:
links?: { };
message: string;
subCategory?: string;
}