Details
Address Pin
Details
Address Pin
GET
/
api
/
v1
/
in
/
address
/
pin
curl --request GET \
--url https://infopass.in/api/v1/in/address/pin \
--header 'Authorization: Basic <encoded-value>'
{
"code": "0x0200",
"message": "Record found successful.",
"status": "SUCCESS",
"data": {
"circleName": "Uttar Pradesh Circle",
"regionName": "Lucknow HQ Region",
"divisionName": "Faizabad Division",
"officeName": "Ballipur BO",
"pinCode": 224204,
"officeType": "BO",
"delivery": "Delivery",
"district": "FAIZABAD",
"stateName": "Uttar Pradesh"
}
}
Authorizations
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Response
200
application/json
OK
The response is of type object
.
curl --request GET \
--url https://infopass.in/api/v1/in/address/pin \
--header 'Authorization: Basic <encoded-value>'
{
"code": "0x0200",
"message": "Record found successful.",
"status": "SUCCESS",
"data": {
"circleName": "Uttar Pradesh Circle",
"regionName": "Lucknow HQ Region",
"divisionName": "Faizabad Division",
"officeName": "Ballipur BO",
"pinCode": 224204,
"officeType": "BO",
"delivery": "Delivery",
"district": "FAIZABAD",
"stateName": "Uttar Pradesh"
}
}