States
Read on populating states enabled for you
Get states in a country
GET /countries/{{countryCode}}/states
GET /countries/{{countryCode}}/statescurl --location --request GET '{{url}}/{{countryCode}}/states' \
--header 'X-Client-Id: {{client_id}}' \
--header 'X-Client-Secret: {{client_secret}}' \
--header 'Content-Type: application/json'[
{
"code": "CA",
"country": "US",
"name": "California"
}
]Get states by code
GET /countries/{{countryCode}}/states/{{stateCode}}
GET /countries/{{countryCode}}/states/{{stateCode}}curl --location --request GET 'https://v4test.machpay.com/v4/countries/{{countryCode}}/states/{{stateCode}}' \
--header 'X-Client-Id: {{client_id}}' \
--header 'X-Client-Secret: {{client_secret}}' \
--header 'Content-Type: application/json'{
"code": "CA",
"country": "US",
"name": "California"
}Last updated