POST api/KYC/FileExchange
Request Information
URI Parameters
None.
Body Parameters
FileExchangeInputInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| IFAID | string |
None. |
|
| MembID | integer |
None. |
|
| authorization | string |
None. |
|
| FileExchType | string |
None. |
|
| ttl | string |
None. |
|
| file | Collection of byte |
None. |
|
| fileName | string |
None. |
|
| contentType | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"IFAID": "sample string 1",
"MembID": 2,
"authorization": "sample string 3",
"FileExchType": "sample string 4",
"ttl": "sample string 5",
"file": "QEA=",
"fileName": "sample string 6",
"contentType": "sample string 7"
}
application/xml, text/xml
Sample:
<FileExchangeInputInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Datacomp.AppServices.UI.WM.WMVideoKYCWrapper.Models"> <FileExchType>sample string 4</FileExchType> <IFAID>sample string 1</IFAID> <MembID>2</MembID> <authorization>sample string 3</authorization> <contentType>sample string 7</contentType> <file>QEA=</file> <fileName>sample string 6</fileName> <ttl>sample string 5</ttl> </FileExchangeInputInfo>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
FileExchangesOutputInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| file | File |
None. |
Response Formats
application/json, text/json
Sample:
{
"file": {
"id": 1,
"filetype": "sample string 2",
"size": 3,
"directURL": "sample string 4",
"protected": true
}
}
application/xml, text/xml
Sample:
<FileExchangesOutputInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Datacomp.AppServices.UI.WM.WMVideoKYCWrapper.Models">
<file>
<directURL>sample string 4</directURL>
<filetype>sample string 2</filetype>
<id>1</id>
<protected>true</protected>
<size>3</size>
</file>
</FileExchangesOutputInfo>