Shop
State
GET
/
api
/
v1
/
in
/
shop
/
states
curl --request GET \
--url https://infopass.in/api/v1/in/shop/states \
--header 'Authorization: Basic <encoded-value>'
{
"code": "0x0200",
"message": "Record not found.",
"status": "SUCCESS",
"data": [
{
"state": "Delhi",
"stateCode": "DL"
},
{
"state": "Haryana",
"stateCode": "HR"
},
{
"state": "Jammu And Kashmir",
"stateCode": "JK"
},
{
"state": "Karnataka",
"stateCode": "KR"
},
{
"state": "Rajasthan",
"stateCode": "RJ"
},
{
"state": "Telangana",
"stateCode": "TL"
},
{
"state": "Uttarakhand",
"stateCode": "UK"
},
{
"state": "Uttar Pradesh",
"stateCode": "UP"
},
{
"state": "West Bengal",
"stateCode": "WB"
}
]
}
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/shop/states \
--header 'Authorization: Basic <encoded-value>'
{
"code": "0x0200",
"message": "Record not found.",
"status": "SUCCESS",
"data": [
{
"state": "Delhi",
"stateCode": "DL"
},
{
"state": "Haryana",
"stateCode": "HR"
},
{
"state": "Jammu And Kashmir",
"stateCode": "JK"
},
{
"state": "Karnataka",
"stateCode": "KR"
},
{
"state": "Rajasthan",
"stateCode": "RJ"
},
{
"state": "Telangana",
"stateCode": "TL"
},
{
"state": "Uttarakhand",
"stateCode": "UK"
},
{
"state": "Uttar Pradesh",
"stateCode": "UP"
},
{
"state": "West Bengal",
"stateCode": "WB"
}
]
}