Search + K

Command Palette

Search for a command to run...

Sign In

Create a batch of projects

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

Create multiple projects in a single request.

Request Body

application/json required
interface BatchInputSimplePublicObjectBatchInputForCreate23 {
inputs: SimplePublicObjectBatchInputForCreate23
interface SimplePublicObjectBatchInputForCreate23 {
associations: PublicAssociationsForObject24[];
objectWriteTraceId?: string;
properties: { };
}
[]
;
}

Responses

200 application/json

successful operation

interface BatchResponseSimplePublicObject27 {
completedAt: string;
errors?: StandardError

Ye olde error

interface StandardError {
category: string;
context: { };
errors: ErrorDetail[];
id?: string;
links: { };
message: string;
status: string;
subCategory?: {};
}
[]
;
links?: { };
numErrors?: number;
requestedAt?: string;
results: SimplePublicObject29

A simple public object.

interface SimplePublicObject29 {
archived: boolean;
archivedAt?: string;
createdAt: string;
id: string;
objectWriteTraceId?: string;
properties: { };
propertiesWithHistory?: { };
updatedAt: string;
url?: string;
}
[]
;
startedAt: string;
status: "CANCELED" | "COMPLETE" | "PENDING" | "PROCESSING";
}
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;
}