v1

latestSwagger 2.02026-07-13301635.0 KB
address

add a new recipient address

post/profile/profileAddRecipient

Request body

uidstring

authorized UID of the session.

namestring

the name on the address

business_namestring

the optional business name on the address

address1string

the first line of the address

address2string

the second (optional) line of the address

citystring

the city of the address

statestring

the abbreviated state or province of the address

zipstring

the zip or postal code of the address

countrystring

the name of the country of the address, or use country_id

country_idinteger

the country id code of the recipient

Example request

{
  "uid": "33ce76fede1a31d5ee823179f78d9882",
  "name": "Joe Smith",
  "business_name": "Handwrytten LLC",
  "address1": "1430 E Indian School Rd",
  "address2": "Suite 100",
  "city": "Phoenix",
  "state": "AZ",
  "country": "United States"
}

Response

successful operation

statusstring

Example response

{
  "status": "ok",
  "response": {
    "id": 978214798,
    "name": "Joe Smith",
    "business_name": "Handwrytten LLC",
    "address1": "1430 E Indian School Rd",
    "address2": "Suite 100",
    "city": "Phoenix",
    "state": "AZ",
    "country": "United States"
  }
}