GET
/
common
/
countries
/
{country_iso_code}
/
pincodes
curl --request GET \
  --url https://services.commercengine.dev/api/v1/x2yh61zw4k/storefront/common/countries/{country_iso_code}/pincodes \
  --header 'Authorization: Bearer <token>'
{
  "message": "<string>",
  "success": true,
  "content": {
    "pincodes": [
      {
        "pincode": "<string>",
        "city": "<string>",
        "state_name": "<string>",
        "country_name": "<string>",
        "country_iso_code": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Access token

Path Parameters

country_iso_code
string
required

Country iso code with 2 chars. ex. IN for india

Query Parameters

pincode
string

pincode. atleast 3 initial chars require to use this param

limit
integer

no of rows per page

page
integer

page number of pagination list

Response

200 - application/json
OK
message
string
success
boolean
content
object