Retrieves all countries, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of countries.
db_country| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| code |
Code in 2 letters, following ISO 3166 |
string | |
| country_name |
Name of the country |
string | |
| is_default |
Indicates this is the default country pre-selected when adding a new address. |
boolean | |
| default_db_language_id |
Foreign key of the default language used for this country when none is specified. |
globally unique identifier | |
| disabled |
Indicates this country has been disabled and should not be selectable. |
boolean | |
| default_language |
The language record identified by , embedded for convenience. |
db_language | |
| culture_settings |
Specify how to display value depending not anymore on the culture of the device but on the user itself. |
string | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "9b399fac-74d1-4366-98ae-bcf4a170585b",
"code": "sample string 2",
"country_name": "sample string 3",
"is_default": true,
"default_db_language_id": "3a2751ad-2b2e-488e-881b-641abf66b89b",
"disabled": true,
"default_language": {
"id": "65d6acd8-df1e-4fa1-969e-71f3a46dde6b",
"code": "sample string 2",
"name": "sample string 3",
"is_default": true,
"disabled": true,
"resource_file_name": "sample string 6",
"modified_dateutc": "2026-09-16T08:34:59.0347749+00:00"
},
"culture_settings": "sample string 7",
"modified_dateutc": "2026-09-16T08:34:59.0347749+00:00"
}
application/xml, text/xml
Sample:
<db_country xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<code>sample string 2</code>
<country_name>sample string 3</country_name>
<culture_settings>sample string 7</culture_settings>
<default_db_language_id>3a2751ad-2b2e-488e-881b-641abf66b89b</default_db_language_id>
<default_language>
<code>sample string 2</code>
<disabled>true</disabled>
<id>65d6acd8-df1e-4fa1-969e-71f3a46dde6b</id>
<is_default>true</is_default>
<modified_dateutc>2026-09-16T08:34:59.034Z</modified_dateutc>
<name>sample string 3</name>
<resource_file_name>sample string 6</resource_file_name>
</default_language>
<disabled>true</disabled>
<id>9b399fac-74d1-4366-98ae-bcf4a170585b</id>
<is_default>true</is_default>
<modified_dateutc>2026-09-16T08:34:59.034Z</modified_dateutc>
</db_country>