Skip to main content
POST
/
v1
/
folders
Create a folder
curl --request POST \
  --url https://api.scribe-mail.com/v1/folders \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "folder": {
    "name": "<string>"
  }
}
'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "signature_count": 123,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
folder
object
required

Response

Created

data
object
required