POST api/File/UploadFile?CustId={CustId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| CustId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
FileResponseInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| FilePath | string |
None. |
|
| Status | integer |
None. |
|
| Message | string |
None. |
|
| Exception | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"FilePath": "sample string 1",
"Status": 2,
"Message": "sample string 3",
"Exception": "sample string 4"
}
application/xml, text/xml
Sample:
<FileResponseInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AttendanceInfo"> <Exception>sample string 4</Exception> <Message>sample string 3</Message> <Status>2</Status> <FilePath>sample string 1</FilePath> </FileResponseInfo>