The following API call provides a possibility to get the link for uploading files
Resource URL
/api/1.0/upload/link
Resource Information
| Response formats | JSON |
| Response code | 200 |
| Requires authentication? | Yes |
| HTTP Method | POST |
Parameters
| Name | Type | Default Value | Validation | Description |
parent_id required | uuid | - | uuid4 | ID of the folder where the file should be uploaded |
name required | string | - | length[1, 255] | file name. |
Example Request URL
Example Result
{
"file_id": <uuid>,
"parent_id": <uuid>,
"upload_key": <uuid>
}
0 Comments