Search for calls
POST
/crm/v3/objects/calls/search https://api.hubapi.com
Search for calls by filtering on properties, searching through associations, and sorting results. Learn more about CRM search.
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 CollectionResponseWithTotalSimplePublicObject1 {
paging?:Paging6 ;
results:SimplePublicObject1 [];
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;
}