v1

latestOpenAPI 3.0.22026-07-146168117.0 KB
Papersign Folders

This endpoint returns a list of Papersign folders. Please note that this feature is exclusively available as part of the Papersign API.

get/papersign/folders

Query parameters

space_idstring

Search folders by space id.

folder_idstring

Search folders that are descendants of folder id.

searchstring

Search folders by name.

Response

Successfully returned a list of Papersign folders

status'ok'
totalinteger

The total number of items.

has_moreboolean

Whether there are more items.

limitinteger

The limit of items per page.

skipinteger

The number of items to skip.

Example response

{
  "results": {
    "folders": [
      {
        "id": 9999,
        "name": "My Document",
        "parent_id": 9999,
        "space_id": 8888
      }
    ]
  },
  "total": 57,
  "has_more": true,
  "limit": 20
}