POST dosconnect/UpdateApplicantIdentification
Request Information
URI Parameters
None.
Body Parameters
UpdateApplicantIdentificationInput| Name | Description | Type | Additional information |
|---|---|---|---|
| APIKey | string |
None. |
|
| IdentificationID | integer |
None. |
|
| Identification | UpdateIdentificationModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"APIKey": "sample string 1",
"IdentificationID": 2,
"Identification": {
"IdentificationTypeDD": 1,
"Country": "sample string 1",
"IdentificationNumber": "sample string 2"
}
}
application/xml, text/xml
Sample:
<UpdateApplicantIdentificationInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Scarlett.V2.API.DataModels.Services.API.DOS">
<APIKey>sample string 1</APIKey>
<Identification>
<Country>sample string 1</Country>
<IdentificationNumber>sample string 2</IdentificationNumber>
<IdentificationTypeDD>1</IdentificationTypeDD>
</Identification>
<IdentificationID>2</IdentificationID>
</UpdateApplicantIdentificationInput>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
UpdateBaseOutput| Name | Description | Type | Additional information |
|---|---|---|---|
| ReturnStatus | ReturnStatusModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"ReturnStatus": {
"ReturnCode": 1,
"ReturnMessage": "sample string 2",
"Results": 1
}
}
application/xml, text/xml
Sample:
<UpdateBaseOutput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Scarlett.V2.API.DataModels.Services.API.DOS">
<ReturnStatus xmlns="http://schemas.datacontract.org/2004/07/Scarlett.V2.API.DataModels.Core">
<Results>1</Results>
<ReturnCode>1</ReturnCode>
<ReturnMessage>sample string 2</ReturnMessage>
</ReturnStatus>
</UpdateBaseOutput>