Country Controller

Create a new country

Create a new country with currency details

post/countries

Request body

countryNamestring required

Country name

domainstring required

Country domain

currencyCodestring required

ISO 4217 currency code (3 uppercase letters)

currencySymbolstring required

Currency symbol

mailFromstring required

Email address to use as sender for emails related to this country

supportMailstring required

Support email address for customer inquiries related to this country

emailSignaturestring

Email signature for this country

displayNamestring

Display name for this country (used in UI/emails)

Example request

{
  "countryName": "United States",
  "domain": "example.com",
  "currencyCode": "USD",
  "currencySymbol": "$",
  "mailFrom": "noreply@uklandregistryonline.org.uk",
  "supportMail": "support@uklandregistryonline.org.uk",
  "emailSignature": "Best regards, UK Land Registry Team",
  "displayName": "UK Land Registry"
}

Response

Country created successfully

Changes

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