This API call is used to create a project folder.
Resource URL
/api/1.0/project-folder/create
Resource Information
| Response formats | JSON |
| Response code | 201 |
| Requires authentication? | Yes |
| HTTP Method | POST |
Parameters
| Name | Type | Default Value | Validation | Description |
name required | string | - | length[1, 255] | name of the project folder. |
file_id required | uuid | - | uuid4 | ID of the folder to share. |
users_permissions required | JSON[] | - | {
"user_id": <uuid>,
"operations": <int>
}
| JSON array of user permissions. |
Example Request URL
Example Result
{
"id": <uuid>,
"name": <string>
}
0 Comments