Get public list of countries
GET/company/country/
Returns a paginated list of countries enabled in the system. This endpoint is publicly accessible and only shows active countries.
Use Cases:
- Country selectors in forms
- Displaying available options to users
- Country code validation
Request Example:
GET /company/country?page=2&limit=10
Response Example:
{
docs: [
{
code: es
}
],
totalDocs: 150,
limit: 10,
page: 2,
totalPages: 15
}
Request
Responses
- 200
Successful operation