Skip to main content
POST
/
api
/
v1
/
folders
Create Folder
curl --request POST \
  --url https://api.getversive.com/api/v1/folders \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "My New Folder",
  "access_policy": "FULL_ACCESS"
}
'
{
  "id": "folder_123",
  "name": "My Folder",
  "created_at": "2024-01-01T00:00:00Z"
}
Create a new folder to organize your studies.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
name
string
required
access_policy
enum<string> | null
default:FULL_ACCESS
Available options:
FULL_ACCESS,
CAN_EDIT,
CAN_VIEW,
INVITE_ONLY,
CAN_EDIT_SURVEY_ONLY

Response

Successful Response