curl --request POST \
--url https://api.example.com/country/all \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"languageID": 1,
"browserCode": "en-us"
}
'{
"success": true,
"data": "<unknown>"
}Gets a list of all countries (e.g. United States, Philippines, India, etc.).
curl --request POST \
--url https://api.example.com/country/all \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"languageID": 1,
"browserCode": "en-us"
}
'{
"success": true,
"data": "<unknown>"
}