Skip to main content

State

State List

Use this API to list all state based on a country.

 GET /state/state-list

Query string parameters

FieldTypeDescription
countryId
required
integerCountry ID
qstringfilter data by state name
{
"success": true,
"data": {
"response": {
"acknowledgement": "Success",
"data": {
"stateList": [
{
"stateId": 42,
"name": "California"
}
],
"totalRecords": 1
},
"error": {
"code": "",
"internal_message": "",
"moreInfo": []
}
}
}
}