Country Controller

Get countries with filters

Retrieve countries with optional filters for active status and search

get/countries

Query parameters

isActiveboolean
Example:true

Filter by active status

searchstring
Example:United

Search by country name or currency code

pagenumber required

Page number for pagination

sizenumber required
Example:10

Number of items per page

Response

Countries retrieved successfully

idnumber required

Country ID

countryNamestring required

Country name

currencyCodestring required

ISO 4217 currency code

currencySymbolstring required

Currency symbol

mailFromstring required

Email address used as sender for emails

supportMailstring required

Support email address for customer inquiries

isActiveboolean required

Active status of the country

isDeletedboolean required

Deleted status of the country

emailSignaturestring nullable required

Email signature for the country

displayNamestring nullable required

Display name for the country

Example response

[
  {
    "id": 1,
    "countryName": "United States",
    "currencyCode": "USD",
    "currencySymbol": "$",
    "mailFrom": "noreply@uklandregistryonline.org.uk",
    "supportMail": "support@uklandregistryonline.org.uk",
    "isActive": true,
    "emailSignature": "Best regards, Team",
    "displayName": "UK Land Registry"
  }
]

Changes

No recorded changes to this endpoint across all 1 revision of this API.