Moves a list to a given folder
PUT
/crm/v3/lists/folders/move-list https://api.hubapi.com
Given a list and a folder, the list will be moved to that folder.
Request Body
application/json
required
interface ListMoveRequest {
listId: string;
newFolderId: string;
}
listId: string;
newFolderId: string;
}
Responses
204
No content
unknown
default */*
An error occurred.
interface Error {
category: string;
context?: { };
correlationId: string;
errors?:ErrorDetail [];
links?: { };
message: string;
subCategory?: string;
}
category: string;
context?: { };
correlationId: string;
errors?:
links?: { };
message: string;
subCategory?: string;
}