Country Controller

Update country

Update a country by its ID

patch/countries/{id}

Path parameters

idnumber required

Request body

countryNamestring

Country name

domainstring

Country domain

currencyCodestring

ISO 4217 currency code (3 uppercase letters)

currencySymbolstring

Currency symbol

mailFromstring

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

supportMailstring

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 updated successfully

Changes

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