Skip to main content
POST
/
folders
/
folder
Create folder
curl --request POST \
  --url https://api.gologin.com/folders/folder \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "My Folder"
}
'

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

Name of the folder.

Example:

"My Folder"

Response

201 - undefined