GET api/v2/ExchangeRates?token={token}&Sequence_id={Sequence_id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
Required |
|
| Sequence_id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ExchangeRates| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| EXGTBLID | string |
None. |
|
| XCHGRATE | decimal number |
None. |
|
| EXCHDATE | date |
None. |
|
| Expiration | date |
None. |
|
| Active | boolean |
None. |
|
| CreatedDate | date |
None. |
|
| ModifiedDate | date |
None. |
|
| sequence_id | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"EXGTBLID": "sample string 2",
"XCHGRATE": 1.0,
"EXCHDATE": "2025-12-05T23:44:47.5530903-04:00",
"Expiration": "2025-12-05T23:44:47.5530903-04:00",
"Active": true,
"CreatedDate": "2025-12-05T23:44:47.5530903-04:00",
"ModifiedDate": "2025-12-05T23:44:47.5530903-04:00",
"sequence_id": 1
},
{
"Id": 1,
"EXGTBLID": "sample string 2",
"XCHGRATE": 1.0,
"EXCHDATE": "2025-12-05T23:44:47.5530903-04:00",
"Expiration": "2025-12-05T23:44:47.5530903-04:00",
"Active": true,
"CreatedDate": "2025-12-05T23:44:47.5530903-04:00",
"ModifiedDate": "2025-12-05T23:44:47.5530903-04:00",
"sequence_id": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfExchangeRates xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MaxSalesApi.Models">
<ExchangeRates>
<Active>true</Active>
<CreatedDate>2025-12-05T23:44:47.5530903-04:00</CreatedDate>
<EXCHDATE>2025-12-05T23:44:47.5530903-04:00</EXCHDATE>
<EXGTBLID>sample string 2</EXGTBLID>
<Expiration>2025-12-05T23:44:47.5530903-04:00</Expiration>
<Id>1</Id>
<ModifiedDate>2025-12-05T23:44:47.5530903-04:00</ModifiedDate>
<XCHGRATE>1</XCHGRATE>
<sequence_id>1</sequence_id>
</ExchangeRates>
<ExchangeRates>
<Active>true</Active>
<CreatedDate>2025-12-05T23:44:47.5530903-04:00</CreatedDate>
<EXCHDATE>2025-12-05T23:44:47.5530903-04:00</EXCHDATE>
<EXGTBLID>sample string 2</EXGTBLID>
<Expiration>2025-12-05T23:44:47.5530903-04:00</Expiration>
<Id>1</Id>
<ModifiedDate>2025-12-05T23:44:47.5530903-04:00</ModifiedDate>
<XCHGRATE>1</XCHGRATE>
<sequence_id>1</sequence_id>
</ExchangeRates>
</ArrayOfExchangeRates>