Skip to main content
GET
/
v1
/
in
/
address
/
pin
Pin
curl --request GET \
  --url https://base_url/v1/in/address/pin \
  --header 'Authorization: Basic <encoded-value>'
{
  "code": "0x0200",
  "message": "Record found successful.",
  "status": "SUCCESS",
  "data": {
    "circleName": "Abcdef Circle",
    "regionName": "Xyzabc Region",
    "divisionName": "Dummy Division",
    "officeName": "Office name",
    "pinCode": 110011,
    "officeType": "BO",
    "delivery": "Delivery",
    "district": "district",
    "stateName": "Uttar Pradesh"
  }
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

OK

The response is of type object.