Search + K

Command Palette

Search for a command to run...

Sign In

Retrieves a folder.

GET /crm/v3/lists/folders
Copy endpoint
https://api.hubapi.com

Retrieves a folder and recursively includes all folders via the childNodes attribute. The child lists field will be empty in all child nodes. Only the folder retrieved will include the child lists in that folder.

Parameters

query Query Parameters

Name Type
folderId

The Id of the folder to retrieve.

string

Responses

200 application/json

successful operation

interface ListFolderFetchResponse {
folder: PublicListFolder
interface PublicListFolder {
childLists: number[];
childNodes: PublicListFolder[];
createdAt?: string;
id: string;
name?: string;
parentFolderId: string;
updatedAt?: string;
updatedContentsAt?: string;
userId?: 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;
}