Download OpenAPI specification:Download
| Main Tags | Most Popular Pages |
|---|---|
|
➤
Welcome
➤ Prerequisites ➤ Access Tokens ➤ Quick Integration ➤ Updates ➤ SignalR ➤ APIs Developer Guide ➤ Appendix |
➤
Authentication
➤ Account Management ➤ Add Package ➤ Upload Document ➤ Get Workflow Details ➤ Sign Document |
This section entails the web services for the Personal Folder Management i.e. Get All Folders, Get Folder by ID etc.
This section entails the web services for the Personal Folder Management i.e. Get All Folders, Get Folder by ID etc.
Business applications can use this service API to get the user folders.
| Authorization required | string Default: Bearer {access_token} The OAuth access token obtained as a result of successful authentication via the "password" grant type. |
| Content-Type required | string Default: application/json |
| Accept required | string Default: application/json |
[- {
- "id": 0,
- "items_count": 0,
- "members": [
- {
- "email": "string",
- "name": "string",
- "user_id": 0
}
], - "name": "string",
- "owner": {
- "email": "string",
- "name": "string"
}, - "read": true,
- "shared": true,
- "default": true
}
]Business applications can use this service API to add folder/shared space.
| Authorization required | string Default: Bearer {access_token} The OAuth access token obtained as a result of successful authentication via the "password" grant type. |
| Content-Type required | string Default: application/json |
| Accept required | string Default: application/json |
| name required | string [ 1 .. 255 ] characters Name of folder as INBOX, ARCHIVE |
| shared | boolean Bit use to identify either this folder is the part of shared space or not |
Array of objects or null (Models.FolderMemberRequest) Folder members |
{- "name": "string",
- "shared": true,
- "members": [
- {
- "name": "string",
- "email": "string"
}
]
}{- "id": 0
}Business applications can use this service API to get the user folders.
| id required | integer <int32> |
| Authorization required | string Default: Bearer {access_token} The OAuth access token obtained as a result of successful authentication via the "password" grant type. |
| Content-Type required | string Default: application/json |
| Accept required | string Default: application/json |
{- "id": 0,
- "items_count": 0,
- "members": [
- {
- "email": "string",
- "name": "string",
- "user_id": 0
}
], - "name": "string",
- "owner": {
- "email": "string",
- "name": "string"
}, - "read": true,
- "shared": true,
- "default": true
}Business applications can use this service API to update folder/shared space.
| id required | integer <int32> |
| Authorization required | string Default: Bearer {access_token} The OAuth access token obtained as a result of successful authentication via the "password" grant type. |
| Content-Type required | string Default: application/json |
| Accept required | string Default: application/json |
| name required | string [ 1 .. 255 ] characters Name of folder as INBOX, ARCHIVE |
Array of objects or null (Models.FolderMemberRequest) Folder members |
{- "name": "string",
- "members": [
- {
- "name": "string",
- "email": "string"
}
]
}{- "Message": "string"
}Business applications can use this service API to delete folder/shared space.
| id required | integer <int32> |
| Authorization required | string Default: Bearer {access_token} The OAuth access token obtained as a result of successful authentication via the "password" grant type. |
| Content-Type required | string Default: application/json |
| Accept required | string Default: application/json |
{- "Message": "string"
}Business applications can use this service API to bulk delete folder/shared space.
| Authorization required | string Default: Bearer {access_token} The OAuth access token obtained as a result of successful authentication via the "password" grant type. |
| Content-Type required | string Default: application/json |
| Accept required | string Default: application/json |
[- 0
][- {
- "id": 0,
- "error_message": "string"
}
]
.