Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

NameTypeDescriptionAvailable from version
CodeStringiso, the currenycode 
PriceDoubleThe price is based on EUR, for example: EUR/SEK, EUR/USD 
PriceDateDateTime?Filter by date on the current rate. 
StatusKeyStringStatuses 

 

 

Code Block
languagexml
themeRDark
titleXML request example
linenumberstrue
collapsetrue
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
  <s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <GetAccounts xmlns="http://tempuri.org/">
      <req>
        <Credentials>
          <UserName>yourusername</UserName>
          <Password>yourpassword</Password>
        </Credentials>
        <identify>youridentifier</identify>
        <Args>
          <Codes>
            <string>SEK</string>
			<string>EUR</string>
          </Codes>
        </Args>
        <Fields>
          <Code>true</Code>
          <Price>true</Price>
          <PriceDate>true</PriceDate>
          <StatusKey>true</StatusKey>
        </Fields>
      </req>
    </GetAccounts>
  </s:Body>
</s:Envelope>





...