| Requires any of the roles: | Client, Admin, Partner |
| POST | /currency_rates |
|---|
"use strict";
export class CurrencyRatesAddResponse {
/** @param {{TenantsId?:number,FromCurrenciesId?:number,ToCurrenciesId?:number,ExchangeRate?:number,EffectiveDate?:string,ResponseStatus?:ResponseStatus}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
TenantsId;
/** @type {number} */
FromCurrenciesId;
/** @type {number} */
ToCurrenciesId;
/** @type {number} */
ExchangeRate;
/** @type {string} */
EffectiveDate;
/** @type {ResponseStatus} */
ResponseStatus;
}
export class CurrencyRatesAdd {
/** @param {{TenantsId?:number,FromCurrenciesId?:number,ToCurrenciesId?:number,ExchangeRate?:number,EffectiveDate?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
TenantsId;
/** @type {number} */
FromCurrenciesId;
/** @type {number} */
ToCurrenciesId;
/** @type {number} */
ExchangeRate;
/** @type {string} */
EffectiveDate;
}
JavaScript CurrencyRatesAdd DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /currency_rates HTTP/1.1
Host: duengageapi.uat.scadsoftware.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
TenantsId: 0,
FromCurrenciesId: 0,
ToCurrenciesId: 0,
ExchangeRate: 0,
EffectiveDate: 0001-01-01
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
TenantsId: 0,
FromCurrenciesId: 0,
ToCurrenciesId: 0,
ExchangeRate: 0,
EffectiveDate: 0001-01-01,
ResponseStatus:
{
ErrorCode: String,
Message: String,
StackTrace: String,
Errors:
[
{
ErrorCode: String,
FieldName: String,
Message: String,
Meta:
{
String: String
}
}
],
Meta:
{
String: String
}
}
}