POST address/addressValidation
Action will allow users to validate address against the address validation tool we already have in our application.
Pass HTTP Authorization request header with value "Bearer {token}" to perform this action
Pass HTTP Authorization request header with value "Bearer {token}" to perform this action
Request Information
URI Parameters
None.
Body Parameters
AddressValidation| Name | Description | Type | Additional information |
|---|---|---|---|
| Address | AddressValidationWrapperDto |
None. |
Request Formats
application/json, text/json
Sample:
{
"Address": {
"Street1": "sample string 1",
"City": "sample string 2",
"State": "sample string 3",
"Zip": "sample string 4",
"Country": "sample string 5",
"ValidateZipCodePlusFour": true
}
}
Response Information
Resource Description
BadResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Data |
Data returned by api |
Object |
None. |
| Code |
Response code returned by api |
HttpStatusCode |
None. |
| Message |
Human readable message |
string |
None. |
| TraceId | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Code": 100,
"Message": "sample string 2",
"Data": {},
"TraceId": "sample string 3"
}