Get all Landing Page Folders

GET {{baseUrl}}/cms/v3/pages/landing-pages/folders?createdAt=<dateTime>&createdAfter=<dateTime>&createdBefore=<dateTime>&updatedAt=<dateTime>&updatedAfter=<dateTime>&updatedBefore=<dateTime>&sort=<string>&sort=<string>&after=<string>&limit=<integer>&archived=<boolean>&property=<string>

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.

Request Params

KeyDatatypeRequiredDescription
createdAtstringOnly return Folders created at exactly the specified time.
createdAfterstringOnly return Folders created after the specified time.
createdBeforestringOnly return Folders created before the specified time.
updatedAtstringOnly return Folders last updated at exactly the specified time.
updatedAfterstringOnly return Folders last updated after the specified time.
updatedBeforestringOnly return Folders last updated before the specified time.
sortstringSpecifies which fields to use for sorting results. Valid fields are name, createdAt, updatedAt, createdBy, updatedBy. createdAt will be used by default.
sortstringSpecifies which fields to use for sorting results. Valid fields are name, createdAt, updatedAt, createdBy, updatedBy. createdAt will be used by default.
afterstringThe 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.
limitstringThe maximum number of results to return. Default is 100.
archivedstringSpecifies whether to return deleted Folders. Defaults to false.
propertystring

HEADERS

KeyDatatypeRequiredDescription
Acceptstring

RESPONSES

status: OK

{&quot;results&quot;:[{&quot;category&quot;:&quot;\u003cinteger\u003e&quot;,&quot;created&quot;:&quot;\u003cdateTime\u003e&quot;,&quot;deletedAt&quot;:&quot;\u003cdateTime\u003e&quot;,&quot;id&quot;:&quot;\u003cstring\u003e&quot;,&quot;name&quot;:&quot;\u003cstring\u003e&quot;,&quot;parentFolderId&quot;:&quot;\u003clong\u003e&quot;,&quot;updated&quot;:&quot;\u003cdateTime\u003e&quot;},{&quot;category&quot;:&quot;\u003cinteger\u003e&quot;,&quot;created&quot;:&quot;\u003cdateTime\u003e&quot;,&quot;deletedAt&quot;:&quot;\u003cdateTime\u003e&quot;,&quot;id&quot;:&quot;\u003cstring\u003e&quot;,&quot;name&quot;:&quot;\u003cstring\u003e&quot;,&quot;parentFolderId&quot;:&quot;\u003clong\u003e&quot;,&quot;updated&quot;:&quot;\u003cdateTime\u003e&quot;}],&quot;total&quot;:&quot;\u003cinteger\u003e&quot;,&quot;paging&quot;:{&quot;next&quot;:{&quot;after&quot;:&quot;\u003cstring\u003e&quot;,&quot;link&quot;:&quot;\u003cstring\u003e&quot;}}}