POST api/VPOS/SSNCheck
Request Information
URI Parameters
None.
Body Parameters
SSNCheckRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientID | string |
None. |
|
| Username | string |
None. |
|
| Password | string |
None. |
|
| PaymentID | string |
None. |
|
| SSN | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ClientID": "sample string 1",
"Username": "sample string 2",
"Password": "sample string 3",
"PaymentID": "sample string 4",
"SSN": "sample string 5"
}
application/xml, text/xml
Sample:
<SSNCheckRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ClientID>sample string 1</ClientID> <Username>sample string 2</Username> <Password>sample string 3</Password> <PaymentID>sample string 4</PaymentID> <SSN>sample string 5</SSN> </SSNCheckRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
SSNCheckResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | string |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": "sample string 1",
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<SSNCheckResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Status>sample string 1</Status> <Message>sample string 2</Message> </SSNCheckResponse>