v1

latestOpenAPI 3.0.22026-07-146168117.0 KB
Papersign Folders

This endpoint returns a creates a new Papersign folder. Please note that this feature is exclusively available as part of the Papersign API.

post/papersign/folders

Request body

namestring required

The new name of the folder.

space_idnumber

The unique identifier of the space to create the folder in.

pathstring

The path to create the folder in. Maximum depth is 4 levels. Any missing folders will also be created.

folder_idnumber

The unique identifier of the folder to create the folder in. Required when space_id and path are not present.

Example request

{
  "name": "My new folder",
  "space_id": 8888,
  "path": "/path/to/folder",
  "folder_id": 9999
}

Response

Successfully created a new Papersign Folder

status'ok'

Example response

{
  "results": {
    "folder": {
      "id": 9999,
      "name": "My Document",
      "parent_id": 9999,
      "space_id": 8888
    }
  }
}