GET api/currencies/quotation/{currencyCode}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
currencyCode | string |
Required |
Body Parameters
None.
Response Information
Resource Description
CurrencyQuotationManagerName | Description | Type | Additional information |
---|---|---|---|
CurrencyQuotations | Collection of CurrencyQuotationData |
None. |
Response Formats
application/json, text/json
Sample:
{ "CurrencyQuotations": [ { "PriceReference": 0, "Buyer": 1.0, "Seller": 1.0, "Variation": 1.0 }, { "PriceReference": 0, "Buyer": 1.0, "Seller": 1.0, "Variation": 1.0 } ] }
text/xml
Sample:
<CurrencyQuotationManager xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StackBase.Common.Data.Currencies"> <CurrencyQuotations> <CurrencyQuotationData> <Buyer>1</Buyer> <PriceReference>DOLAR_OFICIAL</PriceReference> <Seller>1</Seller> <Variation>1</Variation> </CurrencyQuotationData> <CurrencyQuotationData> <Buyer>1</Buyer> <PriceReference>DOLAR_OFICIAL</PriceReference> <Seller>1</Seller> <Variation>1</Variation> </CurrencyQuotationData> </CurrencyQuotations> </CurrencyQuotationManager>