Get Folder
GET/folder/:folder_id
The Get Folder API allows you to retrieve details about a specific folder.
Request
Path Parameters
folder_id stringrequired
objectId of folder
Responses
- 200
- 400
- 404
- 405
successful operation
- application/json
- Schema
- Example (from schema)
Schema
objectId string
folderName string
parentFolderId string
parentFolderName string
createdAt date
updatedAt date
{
"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!"
}
folder not found.
- application/json
- Schema
- Example (from schema)
Schema
error string
{
"error": "folder not found."
}
Invalid API Token!
- application/json
- Schema
- Example (from schema)
Schema
error string
{
"error": "Invalid API token!"
}
Loading...