- API
- Create folder
GET
https://send.now/api/folder/create?key=1ltghrilhllgrx2b2&parent_id=58&name=My videos
| Parameters |
Description |
Example |
Format |
Required |
| key |
API-Key |
1ltghrilhllgrx2b2 |
String |
yes |
| parent_id |
ID of the parent folder where the new folder will be created. |
58 |
Number |
no |
| name |
The name of the new folder. |
My videos |
String |
yes |
cURL example
curl --include \
'https://send.now/api/folder/create?key=1ltghrilhllgrx2b2&parent_id=58&name=My videos'
Response
{
"msg": "OK",
"result": {
"fld_id": "285479"
},
"server_time": "2024-08-26 13:16:25",
"status": 200
}
Status code
| 200 |
Everything is OK. Request succeeded |
| 400 |
Bad request (e.g. wrong parameters) |
| 403 |
Permission denied |
| 404 |
File not found |
| 451 |
Unavailable
|