List folders

List folders in your tenant.

Returns: Folders that match the search filter.

POST /api/v1/product/list

Authorization

Request body

Content-Type: application/json

Key
Value

page

Page number of the list to get.

pageSize

Number of records per page.

sort

String defining the sort order.

Example: -updated

search

Array of search filter objects. Search filter objects can include: field Name of the field to filter.

value Value of the field to filter.

operator Applies to numeric properties.

Example 1: {"field": "name", "name": "myfoldername" Example 2: {"field": "isstarred", "isstarred", "true"}

Sample request

{
    "page":1,
    "pageSize":10,
    "sort":"-updated",
    "search":
        [
            {
                "field":"name",
                "value":"Simon Testing"
            }
        ]
}

Sample response

HTTP 200 OK Content-Type: application/json

Last updated