POST api/Common/GetAddressVerification

Request Information

URI Parameters

None.

Body Parameters

ApiAddress
NameDescriptionTypeAdditional information
Address1

string

Matching regular expression pattern: ^[0-9a-zA-Z\-\.\s]*$

Address2

string

Matching regular expression pattern: ^[0-9a-zA-Z\-\.\s]*$

City

string

Matching regular expression pattern: ^[0-9a-zA-Z\-\.\s]*$

State

string

Matching regular expression pattern: ^[a-zA-Z\s]*$

Zip

string

Matching regular expression pattern: ^[0-9]{5}$

SameAddress

boolean

None.

OverrideFlag

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Address1": "sample string 1",
  "Address2": "sample string 2",
  "City": "sample string 3",
  "State": "sample string 4",
  "Zip": "sample string 5",
  "SameAddress": true,
  "OverrideFlag": true
}

application/xml, text/xml

Sample:
<ApiAddress xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AAAMembershipAPI.ViewModels">
  <Address1>sample string 1</Address1>
  <Address2>sample string 2</Address2>
  <City>sample string 3</City>
  <OverrideFlag>true</OverrideFlag>
  <SameAddress>true</SameAddress>
  <State>sample string 4</State>
  <Zip>sample string 5</Zip>
</ApiAddress>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.