Description
This API returns a list of currency codes that are ISO 4217 compliant.
It can return all records or only the records for a specified code or id. This API is used to fetch currency details for financial transactions, reporting, and data analysis.
Request Parameters
# |
Name |
Type |
Required |
Example |
Description |
1 |
CurrencyCode |
string |
0 |
Sample text |
If code not specified, all records are returned, or only details for specified code otherwise. |
2 |
CurrencyId |
string |
0 |
string |
If Id not specified, all records are returned, or only details for specified id otherwise. |
Request body
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:dem="https://api.pixi.eu/soap/demosandbox/">
<soapenv:Header/>
<soapenv:Body>
<dem:pixiGetCurrency>
<dem:CurrencyCode>Sample text</dem:CurrencyCode>
<dem:CurrencyId>string</dem:CurrencyId>
</dem:pixiGetCurrency>
</soapenv:Body>
</soapenv:Envelope>Response
Body 1: Result set
# |
Name |
Type |
Description |
1 |
Id |
integer |
pixi* Identification of currency |
2 |
Code |
string |
Currency code, ISO 4217 |
3 |
CodeNumber |
string |
Currency number, ISO 4217 |
4 |
Active |
boolean |
True if it when currency if frequently used |
5 |
LocaleId |
integer |
Location Id |
Additional Notes