POST api/KYC/Request
Request Information
URI Parameters
None.
Body Parameters
KYC_RequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Identity | Collection of KYC_ImagesScan |
None. |
|
| Address | Collection of KYC_ImagesScan |
None. |
|
| Selfie | Collection of KYC_ImagesScan |
None. |
|
| ApplicationID | integer |
None. |
|
| PID | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Identity": [
{
"ImageData": "sample string 1",
"ImageFormat": "sample string 2",
"ImageNumber": 3,
"ImageTypeID": 4
},
{
"ImageData": "sample string 1",
"ImageFormat": "sample string 2",
"ImageNumber": 3,
"ImageTypeID": 4
}
],
"Address": [
{
"ImageData": "sample string 1",
"ImageFormat": "sample string 2",
"ImageNumber": 3,
"ImageTypeID": 4
},
{
"ImageData": "sample string 1",
"ImageFormat": "sample string 2",
"ImageNumber": 3,
"ImageTypeID": 4
}
],
"Selfie": [
{
"ImageData": "sample string 1",
"ImageFormat": "sample string 2",
"ImageNumber": 3,
"ImageTypeID": 4
},
{
"ImageData": "sample string 1",
"ImageFormat": "sample string 2",
"ImageNumber": 3,
"ImageTypeID": 4
}
],
"ApplicationID": 1,
"PID": "sample string 2"
}
application/xml, text/xml
Sample:
<KYC_RequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Isak.WebApi.Areas.KYC.Models">
<Address>
<KYC_ImagesScan>
<ImageData>sample string 1</ImageData>
<ImageFormat>sample string 2</ImageFormat>
<ImageNumber>3</ImageNumber>
<ImageTypeID>4</ImageTypeID>
</KYC_ImagesScan>
<KYC_ImagesScan>
<ImageData>sample string 1</ImageData>
<ImageFormat>sample string 2</ImageFormat>
<ImageNumber>3</ImageNumber>
<ImageTypeID>4</ImageTypeID>
</KYC_ImagesScan>
</Address>
<ApplicationID>1</ApplicationID>
<Identity>
<KYC_ImagesScan>
<ImageData>sample string 1</ImageData>
<ImageFormat>sample string 2</ImageFormat>
<ImageNumber>3</ImageNumber>
<ImageTypeID>4</ImageTypeID>
</KYC_ImagesScan>
<KYC_ImagesScan>
<ImageData>sample string 1</ImageData>
<ImageFormat>sample string 2</ImageFormat>
<ImageNumber>3</ImageNumber>
<ImageTypeID>4</ImageTypeID>
</KYC_ImagesScan>
</Identity>
<PID>sample string 2</PID>
<Selfie>
<KYC_ImagesScan>
<ImageData>sample string 1</ImageData>
<ImageFormat>sample string 2</ImageFormat>
<ImageNumber>3</ImageNumber>
<ImageTypeID>4</ImageTypeID>
</KYC_ImagesScan>
<KYC_ImagesScan>
<ImageData>sample string 1</ImageData>
<ImageFormat>sample string 2</ImageFormat>
<ImageNumber>3</ImageNumber>
<ImageTypeID>4</ImageTypeID>
</KYC_ImagesScan>
</Selfie>
</KYC_RequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.