Fair API Pricing

No Surprise Fees

Secure Your Document Distribution and Management with a Signority API Plan

Rename a Folder

PUT: /v1/folders/{folderId}

Description
This API call creates a folder inside of your Signority account. Whether the folder holds documents or templates can be set by using the folderType field.

Format
JSON

URL Parameters
None

Data Parameters

Field Mandatory Type Description
folder Yes JSONObject Folder object
name Yes String Folder’s new name

Example Call:

folder: {
    "name": "t22"
}

Response
Returns a list of template folders for the user as well as it’s information or an error response.

Example Success Response:

{
    "data": {
        "id": 115692,
        "name": "t22",
        "metaData": "",
        "parent": 0
    },
    "success": true
}

Example Error Response:

Code: not 400

or

{
    'message': [detailed error message]
    'success': False
}