Update Currency
Updates an existing currency's name and formatting. Send only the fields you want to change.
Operation
| Operation | Type | Purpose |
|---|---|---|
updateAdminSettingsCurrency(input:) | Mutation | Update a currency |
Input fields
| Field | Required | Meaning |
|---|---|---|
id | yes | IRI of the currency to update. |
name | no | Display name. |
symbol | no | Currency symbol. |
decimal | no | Number of decimal places. |
groupSeparator | no | Thousands separator. |
decimalSeparator | no | Decimal point character. |
currencyPosition | no | left or right. |
Notes
codeis immutable. It is not part of the update input type at all — attempting to send acodefield is rejected by the schema ("Field code is not defined by type updateAdminSettingsCurrencyInput"). Thecodein the response is unchanged.- Use the
adminSettingsCurrenciesquery to discover a validid. - Permission:
settings.currencies.edit.
All currency operations require an admin Bearer token — see Authentication.

