POST https://api.subscriptiongenius.com/2/addresses/
Request Parameters
Paramater Description Required Default Data Type
address Address line of address Yes String (50)
city City on address Yes String (50)
state State on address. USA states abbreviated to 2 letters Yes String (60)
subscriber_id Subscriber's ID the address belongs to Yes Integer
zip_code Zip code or postal code on address Yes String (12)
company Company name on address No String (50)
country_name Abreviated or spelled out name of country. No USA String (50)
first_name First name on address No String (50)
last_name Last name on address No String (50)
Response Parameters
Paramater Description Data Type
address_id Unique reference id to address Integer
Example Request
{
  "address":"5919 S 118TH CIR STE 250",
  "city":"OMAHA",
  "state":"NE",
  "subscriber_id":"134203",
  "zip_code":"68137",
  "company":"Subscription Genius",
  "country":"USA",
  "first_name":"John",
  "last_name":"Doe"
}
Example Response
{
  "address_id":213099
}