/Currencies
Description
Reads the currencies
- The right ‘Lesen’ is required for the data ‘Währung’.
Request
URI Parameters
CurrencyCode
string
Filters the list according to the currency number.
Page
integer
Page number for paging | Default: 0
Items
integer
Sets the number of entries per page | Default: 10 | All: 0
SearchTerm
string
Filter for words
SearchIn
string
Properties in which to search. The separator between these properties is "|".
OrderBy
string
Properties to be sorted by. An exclamation mark ! at the end indicates downward sorting. To sort by several properties, they must be separated by a "|".
Filter
string
A filter can be defined to limit the result set. For example: (Property EQ Value OR Property2 GT Value2) AND (Property3 CT 'String') See the description for the FilterQueryLanguage for more information.
Body Parameters
None.
Response
Resource Description
Es wird eine Liste von Währungsmodellen zurückgeliefert.
Code
string
Required
Length: including between 0 and 3
Abbreviation of the currency database: [CURR.[Currency code] E.g.: EUR, DM, USD
Description
string
Length: including between 0 and 40
Description text of the currency. Database: [CURR].[Name]
IsoCode
string
Length: including between 0 and 3
ISO code of the currency Database: [CURR].[ISOCurrencyCode] E.g.: EUR, DEM, USD
TenantExchangeRate
decimal number
Conversion factor with regard to the client currency Database: [CURR].[Calculation rate].
DocumentTotalRoundNearest
integer
Rounding rule for the document depending on the currency Database: [DOCUMENT.RoundingDoc]
DocumentPositionTotalRoundNearest
integer
Rounding rule for the line item depending on the currency Database: [DOCUMENT.RoundingDoc]
Response Formats
application/json
Example:
[
{
"Code": "sample string 1",
"Description": "sample string 2",
"IsoCode": "sample string 3",
"TenantExchangeRate": 4.1,
"DocumentTotalRoundNearest": 5,
"DocumentPositionTotalRoundNearest": 6
},
{
"Code": "sample string 1",
"Description": "sample string 2",
"IsoCode": "sample string 3",
"TenantExchangeRate": 4.1,
"DocumentTotalRoundNearest": 5,
"DocumentPositionTotalRoundNearest": 6
}
]