API DocumentationAddresses

Get an address by ID

Retrieves address details for the specified ID

GET
/api/manufacturer/v1/address/{addressId}
AuthorizationBearer <token>

In: header

Path Parameters

addressIdinteger

ID of the address to retrieve

Formatint64

Response Body

curl -X GET "http://m-api-dev.phas.io/api/manufacturer/v1/address/1"
{
  "addressId": 0,
  "isBillingAddress": true,
  "street1": "string",
  "street2": "string",
  "city": "string",
  "state": "string",
  "country": "string",
  "countryAlpha2Code": "string",
  "countryAlpha3Code": "string",
  "jurisdictionIsoCode": "string",
  "zip": "string",
  "name": "string",
  "company": "string",
  "phone": "string",
  "email": "string",
  "residential": true,
  "addressType": "string",
  "isDeleted": true
}
Empty