Search + K

Command Palette

Search for a command to run...

Sign In

Search for projects

POST /crm/objects/v3/projects/search
Copy endpoint
https://api.hubapi.com

Search for projects 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
interface FilterGroup {
filters: Filter[];
}
[]
;
limit: number;
properties: string[];
query?: string;
sorts: string[];
}

Responses

200 application/json

successful operation

interface CollectionResponseWithTotalSimplePublicObject25 {
paging?: Paging34
interface Paging34 {
next?: NextPage38;
prev?: PreviousPage;
}
;
results: SimplePublicObject29

A simple public object.

interface SimplePublicObject29 {
archived: boolean;
archivedAt?: string;
createdAt: string;
id: string;
objectWriteTraceId?: string;
properties: { };
propertiesWithHistory?: { };
updatedAt: string;
url?: string;
}
[]
;
total: number;
}
default */*

An error occurred.

interface Error {
category: string;
context?: { };
correlationId: string;
errors?: ErrorDetail
interface ErrorDetail {
code?: string;
context?: { };
in?: string;
message: string;
subCategory?: string;
}
[]
;
links?: { };
message: string;
subCategory?: string;
}