| Field | Required | Description |
|---|---|---|
| api-token | Yes | Authentication token provided by VasyERP |
curl --location '/api/v1/master/location/country' \
--header 'api-token: {{.in-api-token}}'{
"status": true,
"message": "All Country List",
"code": "200",
"response": [
{
"countryId": 1,
"countryCode": "AF",
"countryName": "Afghanistan",
"currencyCode": null,
"currencyName": null,
"currencySymbol": null,
"countryDialCodePrefix": 93
},
{
"countryId": 2,
"countryCode": "AL",
"countryName": "Albania",
"currencyCode": null,
"currencyName": null,
"currencySymbol": null,
"countryDialCodePrefix": 355
}
]
}