Search + K

Command Palette

Search for a command to run...

Sign In

Get all Landing Page Folders

GET /cms/v3/pages/landing-pages/folders
Copy endpoint
https://api.hubapi.com

Get the list of Landing Page Folders. Supports paging and filtering. This method would be useful for an integration that examined these models and used an external service to suggest edits.

Parameters

query Query Parameters

Name Type
after

The cursor token value to get the next set of results. You can get this from the paging.next.after JSON property of a paged response containing more results.

string
archived

Specifies whether to return deleted Folders. Defaults to false.

boolean
createdAfter

Only return Folders created after the specified time.

string
createdAt

Only return Folders created at exactly the specified time.

string
createdBefore

Only return Folders created before the specified time.

string
limit

The maximum number of results to return. Default is 100.

number
property

Specifies which properties of the landing page folders to include in the response.

string
sort

Specifies which fields to use for sorting results. Valid fields are name, createdAt, updatedAt, createdBy, updatedBy. createdAt will be used by default.

string[]
updatedAfter

Only return Folders last updated after the specified time.

string
updatedAt

Only return Folders last updated at exactly the specified time.

string
updatedBefore

Only return Folders last updated before the specified time.

string

Responses

200 application/json

successful operation

interface CollectionResponseWithTotalContentFolderForwardPaging {
paging?: ForwardPaging4

Model definition for forward paging.

interface ForwardPaging4 {
next?: NextPage5;
}
;
results: ContentFolder

Model definition for a content folder.

interface ContentFolder {
category: number;
created: string;
deletedAt: string;
id: string;
name: string;
parentFolderId: number;
updated: 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;
}