Create a folder

Creates a new folder. Order is auto-assigned if omitted.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

Example request

curl --location 'https://app.eraser.io/api/folders' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer $YOUR-TOKEN-HERE' \
--data '{
  "name": "Design Docs"
}'

An example request with explicit order and parent:

curl --location 'https://app.eraser.io/api/folders' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer $YOUR-TOKEN-HERE' \
--data '{
  "name": "Subfolders",
  "parentFolderId": "xK9mPq2vR",
  "order": 3
}'

Example response

{
  "id": "xK9mPq2vR"
}
Body Params
string

Folder name

string | null

Parent folder ID, or null for root-level

integer

Sort order among siblings. Auto-assigned if omitted.

Responses

400

Invalid request body

401

Missing or invalid bearer token

403

Unauthorized

500

Internal server error

Language
Credentials
Bearer
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json