Skip to main content

Country List

Get a list of countries

HTTP Request

[GET] /api/v6/configs/countries

Query Parameters

Fields

FieldsTypeDescription
idintegerIdentifier
country_codeintegerCountry code
country_namestringCountry name
orderintegerPriority order
international_namestringInternational name

Filtering

FieldsSupportTypeDescription
ideq,inintegerIdentifier
valideqintegerValid or not

Limit & Offset

TypeDescription
LimitintegerNumber of records to retrieve
OffsetintegerNumber of records to skip

Example

HTTP Request

GET api/v6/configs/countries?fields=country_name&limit=1&offset=1 HTTP/1.1
Host: example.getflycrm.com
Content-Type: application/json

Status

200 OK

Response

{
"data": [
{
"id": 2,
"country_name": "Vietnam",
}
],
"has_more": true,
"offset": 1,
"limited": 1
}