currencies resource type (v1.0)
NEW VERSION This is v1.0 of the Business Central API. For the newest version, see Business Central API (V2.0).
Represents a currency used in Business Central.
Note
For information about enabling APIs for Business Central see Enabling the APIs for Dynamics 365 Business Central.
Methods
Method | Return Type | Description |
---|---|---|
GET currencies | currencies | Get a Currency. |
POST currencies | currencies | Create a Currency. |
PATCH currencies | currencies | Update a Currency. |
DELETE currencies | none | Delete a Currency. |
Properties
Property | Type | Description |
---|---|---|
id | GUID | The unique ID of the currency. Non-editable. |
code | string | Specifies the currency code. |
displayName | string | Specifies the currency display name. |
symbol | string | Specifies the symbol for this currency that appears on checks. |
amountDecimalPlaces | string | Specifies the number of decimal places the system will display on amounts for this currency. |
amountRoundingPrecision | decimal | Specifies the size of the interval to be used when rounding amounts for this currency. |
lastModifiedDateTime | datetime | The last datetime the currency was modified. Read-Only. |
Relationships
None
JSON representation
Here is a JSON representation of the currencies.
{
"id": "GUID",
"code": "string",
"displayName": "string",
"symbol": "string",
"amountDecimalPlaces": "string",
"amountRoundingPrecision": "decimal",
"lastModifiedDateTime": "datetime"
}
Related information
Get Currencies
Post Currencies
Patch Currencies
Delete Currencies