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