POST api/FsChunk
Request Information
URI Parameters
None.
Body Parameters
FsChunkName | Description | Type | Additional information |
---|---|---|---|
ChunkId | string |
None. |
|
FileId | string |
None. |
|
SeqNbr | integer |
None. |
|
ChunkSize | integer |
None. |
|
Data | Collection of byte |
None. |
Request Formats
application/json, text/json
Sample:
{ "ChunkId": "sample string 1", "FileId": "sample string 2", "SeqNbr": 3, "ChunkSize": 4, "Data": "QEA=" }
application/xml, text/xml
Sample:
<FsChunk xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="f1"> <ChunkId>sample string 1</ChunkId> <ChunkSize>4</ChunkSize> <Data>QEA=</Data> <FileId>sample string 2</FileId> <SeqNbr>3</SeqNbr> </FsChunk>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessageName | Description | Type | Additional information |
---|---|---|---|
Version | Version |
None. |
|
Content | HttpContent |
None. |
|
StatusCode | HttpStatusCode |
None. |
|
ReasonPhrase | string |
None. |
|
Headers | Collection of Object |
None. |
|
RequestMessage | HttpRequestMessage |
None. |
|
IsSuccessStatusCode | boolean |
None. |