GET
/v1/countries/
Copy to clipboard
Get list of country
Get list of country
Request
Add parameter in header
authorization
Example:
Authorization: Bearer <token>
Responses
200 Response
application/json
status
boolean
optional
data
array [object]
optional
name
string
optional
code
string
optional
phonePrefix
string
optional
{
"status": true,
"data": [
{
"name": "string",
"code": "string",
"phonePrefix": "string"
}
]
}