Interface CollectionApiCreateCollectionRequest

Request parameters for createCollection operation in CollectionApi.

CollectionApiCreateCollectionRequest

interface CollectionApiCreateCollectionRequest {
    ids?: string[];
    isLocked?: boolean;
    name?: string;
    parentId?: string;
}

Properties

ids?: string[]

Item Ids to add to the collection.

CollectionApiCreateCollection

isLocked?: boolean

Whether or not to lock the new collection.

CollectionApiCreateCollection

name?: string

The name of the collection.

CollectionApiCreateCollection

parentId?: string

Optional. Create the collection within a specific folder.

CollectionApiCreateCollection