POST api/dropbox/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
Body Parameters
FileDropAPI| Name | Description | Type | Additional information |
|---|---|---|---|
| fileDropKey | globally unique identifier |
None. |
|
| dropName | string |
None. |
|
| dropController | string |
None. |
|
| dropKey | string |
None. |
|
| position | integer |
None. |
|
| fileUrl | Collection of byte |
None. |
|
| timeStamp | date |
None. |
|
| dropOption | string |
None. |
|
| isMultiple | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"fileDropKey": "97e26d0e-fdfe-4791-b861-b122994050a2",
"dropName": "sample string 2",
"dropController": "sample string 3",
"dropKey": "sample string 4",
"position": 5,
"fileUrl": "QEA=",
"timeStamp": "2026-01-13T15:58:01.8776543-08:00",
"dropOption": "sample string 7",
"isMultiple": true
}
application/xml, text/xml
Sample:
<FileDropAPI xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityData.Models"> <dropController>sample string 3</dropController> <dropKey>sample string 4</dropKey> <dropName>sample string 2</dropName> <dropOption>sample string 7</dropOption> <fileDropKey>97e26d0e-fdfe-4791-b861-b122994050a2</fileDropKey> <fileUrl>QEA=</fileUrl> <isMultiple>true</isMultiple> <position>5</position> <timeStamp>2026-01-13T15:58:01.8776543-08:00</timeStamp> </FileDropAPI>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
JsonResultData| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Data | Object |
None. |
|
| Extra | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Message": "sample string 2",
"Data": {},
"Extra": {}
}
application/xml, text/xml
Sample:
<JsonResultData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityData.Models"> <Data /> <Extra /> <Message>sample string 2</Message> <Success>true</Success> </JsonResultData>