Download OpenAPI specification:
Files API to upload, download blobs and to retrieve a link of a specific node.
Creates and returns a preview of the image fetched by id and optionally by version with the given size, quality and format
| nodeId required | string (Id) |
| area required | string (Area) |
| version | integer (Version) |
| quality | string (ImageQualityEnum) Default: "medium" Enum: "lowest" "low" "medium" "high" "highest" Class representing all the image quality accepted values |
| output_format | string (ImageTypeEnum) Default: "medium" Enum: "jpeg" "png" Class representing all the image type accepted values |
| crop | boolean (Crop) Default: false |
Creates and returns a preview of the image fetched by id and optionally by version with the given size, quality and format
| nodeId required | string (Id) |
| area required | string (Area) |
| version | integer (Version) |
| quality | string (ImageQualityEnum) Default: "medium" Enum: "lowest" "low" "medium" "high" "highest" Class representing all the image quality accepted values |
| output_format | string (ImageTypeEnum) Default: "medium" Enum: "jpeg" "png" Class representing all the image type accepted values |
| shape | string (ImageShapeEnum) Default: "Rectangular" Enum: "Rounded" "Rectangular" Class representing all the image shape accepted values |
Creates and returns a preview of the pdf fetched by id and optionally by version, the pdf file will contain the first and last page given. With default values it will return a pdf with all the pages.
| nodeId required | string (Id) |
| version | integer (Version) |
| first_page | integer (FirstPage) |
| last_page | integer (LastPage) |
Creates and returns a preview of the image fetched by id and optionally by version with the given size, quality and format
| nodeId required | string (Id) |
| area required | string (Area) |
| version | integer (Version) |
| quality | string (ImageQualityEnum) Default: "medium" Enum: "lowest" "low" "medium" "high" "highest" Class representing all the image quality accepted values |
| output_format | string (ImageTypeEnum) Default: "medium" Enum: "jpeg" "png" Class representing all the image type accepted values |
| shape | string (ImageShapeEnum) Default: "Rectangular" Enum: "Rounded" "Rectangular" Class representing all the image shape accepted values |
Creates and returns a preview of the document fetched by id and optionally by version, the pdf file will contain the first and last page given. With default values it will return a pdf with all the pages.
| nodeId required | string (Id) |
| version | integer (Version) |
| first_page | integer (FirstPage) |
| last_page | integer (LastPage) |
Uploads a new node
| Filename required | string The fullname of the file to upload encoded in Base64 |
| Description | string <byte> The description of the file to upload |
| ParentId | string <UUID> The id of the folder where to upload the file, if omitted it will be uploaded on user Home |
New node data, content type header must be specified based on the file to upload
{- "nodeId": "string"
}Uploads a new node (internal call without token verification)
| Filename required | string The fullname of the file to upload encoded in Base64 |
| Description | string <byte> The description of the file to upload |
| ParentId | string <UUID> The id of the folder where to upload the file, if omitted it will be uploaded on user Home |
| AccountId required | string The id of the account where to upload the file |
New node data, content type header must be specified based on the file to upload
{- "nodeId": "string"
}Uploads a new version of an existing node
| NodeId required | string <UUID> The id of the existing node |
| Filename required | string <byte> The fullname of the node to upload encoded in Base64 |
| OverwriteVersion required | boolean If true the current version of the node is overwritten by the new one, otherwise a new version is created |
New node data, content type header must be specified based on the file to upload
{- "nodeId": "string",
- "version": 0
}Requests to upload a specific file to a specific target module
| NodeId required | string <UUID> The id of the existing node |
| Filename required | string <byte> The fullname of the node to upload encoded in Base64 |
| OverwriteVersion required | boolean If true the current version of the node is overwritten by the new one, otherwise a new version is created |
New node data, content type header must be specified based on the file to upload
{- "nodeId": "string",
- "version": 0
}