• Features
  • Pricing
Get Started

List FoldersCreate FolderGet FolderUpdate FolderDelete Folder

POST /v1/folders

Create a new folder by sending a JSON request body.

POST /v1/folders creates a new folder.

Authentication

Send an organization API key in x-api-key or Authorization: Bearer <key>.

Request Body

name is required. All other fields are optional.

NameTypeRequiredDescription
namestringYesFolder name, from 1 to 100 characters.
descriptionstring or nullNoDescription, up to 500 characters.
teamIdsarray of stringsNoUp to 50 teams allowed to access the folder. Defaults to an empty array.

Example

curl -X POST "https://api.blueputto.com/v1/folders" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "content-type: application/json" \
  -d '{"name":"Conservation reports"}'

Success Response

201 Created

{
  "data": {}
}

Error Responses

  • 400 Bad Request
  • 401 Unauthorized
  • 404 Not Found
  • 429 Too Many Requests

GET /v1/folders

List folders with pagination and free-text search.

GET /v1/folders/{folderId}

Retrieve a single folder by its UUID.

On this page

AuthenticationRequest BodyExampleSuccess ResponseError Responses