GET
/
customers
/
{user_id}
/
addresses
/
{address_id}
curl --request GET \
  --url https://services.commercengine.dev/api/v1/x2yh61zw4k/storefront/customers/{user_id}/addresses/{address_id} \
  --header 'Authorization: Bearer <token>'
{
  "message": "<string>",
  "success": true,
  "content": {
    "address": {
      "id": "<string>",
      "first_name": "<string>",
      "last_name": "<string>",
      "country_code": "<string>",
      "phone": "<string>",
      "email": "<string>",
      "address_line1": "<string>",
      "address_line2": "<string>",
      "landmark": "<string>",
      "pincode": "<string>",
      "city": "<string>",
      "state": "<string>",
      "country": "India",
      "gstin": "<string>",
      "business_name": "<string>",
      "is_phone_verified": true,
      "is_email_verified": true,
      "is_default_billing": true,
      "is_default_shipping": true
    }
  }
}

Authorizations

Authorization
string
header
required

Access token

Path Parameters

user_id
string
required

user id

address_id
string
required

address id

Response

200
application/json
OK
message
string
success
boolean
content
object