Get folder list
GET/folderlist
The Folder List API empowers you to retrieve a list of folder with or without parentFolderId
Request
Query Parameters
parentFolderId string
objectId of folder
limit number
Possible values: <= 500
Example: 10
skip number
Example: 0
Responses
- 200
- 400
- 405
successful operation
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
result
object[]
objectId string
folderName string
parentFolderId string
parentFolderName string
createdAt date
updatedAt date
{
"result": [
{
"objectId": "ph1bhx2jp",
"folderName": "new folder",
"parentFolderId": "J2nas5kiPe",
"parentFolderName": "new sub folder",
"createdAt": "2023-10-07T16:49:56.000Z",
"updatedAt": "2023-10-07T16:49:56.000Z"
}
]
}
Something went wrong, please try again later!
- application/json
- Schema
- Example (from schema)
Schema
error string
{
"error": "Something went wrong, please try again later!"
}
Invalid API Token!
- application/json
- Schema
- Example (from schema)
Schema
error string
{
"error": "Invalid API token!"
}
Loading...