For the complete documentation index, see llms.txt. This page is also available as Markdown.

Customer address

Get customer address

get
/customer-address

Fetches the customer address details.

Header parameters
AuthorizationstringOptional

Optional Bearer token for authentication.

industrystringOptional

The industry of the user.

Default: electronics
keystringOptional

The unique key for the request.

Default: 8097571064818418
languagekeystringOptional

The language key for the request.

Default: 57
Responses
200

Successfully fetched the customer address

*/*
statusintegerOptionalExample: 1
messagestringOptionalExample: Successfully Get the customer Address
get/customer-address
GET /backend/api/customer-address HTTP/1.1
Host: 139.59.67.17
Accept: */*
{
  "status": 1,
  "message": "Successfully Get the customer Address",
  "address": {
    "addressId": 1,
    "addressLine1": "text",
    "addressLine2": "text",
    "city": "text",
    "state": "text",
    "postalCode": "text",
    "country": "text"
  }
}

Last updated