HomeGuidesAPI Reference

Address

Payitoff API: Address Schema

The Address schema allows for up to 3 lines to format a street address, plus city, state and zipcode values.

Schema Definition

PropertyTypeFormatDescription
street1stringFirst line of street address.
street2stringSecond line of street address.
street3stringThird line of street address.
citystringCity name
statestringmaxLength: 2Two-letter US state code.
zipcodestringPostal zipcode. May be 5-digit format or 5 + 4 format.

Example

{
  "city": "North Enid",
  "state": "OK",
  "street1": "05700 Moises Mountains",
  "street2": "Apt. 402",
  "street3": null,
  "zipcode": "92192"
}