| Requires any of the roles: | Client, Admin, Partner |
| POST | /currency_rates |
|---|
Imports System
Imports System.IO
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports digitaluapi.ServiceModel
Namespace Global
Namespace digitaluapi.ServiceModel
<DataContract>
Public Partial Class CurrencyRatesAdd
<DataMember(Order:=2)>
<Validate(Validator:="NotNull")>
Public Overridable Property TenantsId As Integer
<DataMember(Order:=3)>
<Validate(Validator:="NotNull")>
Public Overridable Property FromCurrenciesId As Integer
<DataMember(Order:=4)>
<Validate(Validator:="NotNull")>
Public Overridable Property ToCurrenciesId As Integer
<DataMember(Order:=5)>
<Validate(Validator:="NotNull")>
Public Overridable Property ExchangeRate As Double
<DataMember(Order:=6)>
<Validate(Validator:="NotNull")>
Public Overridable Property EffectiveDate As Date
End Class
Public Partial Class CurrencyRatesAddResponse
<DataMember(Order:=2)>
Public Overridable Property TenantsId As Integer
<DataMember(Order:=3)>
Public Overridable Property FromCurrenciesId As Integer
<DataMember(Order:=4)>
Public Overridable Property ToCurrenciesId As Integer
<DataMember(Order:=5)>
Public Overridable Property ExchangeRate As Double
<DataMember(Order:=6)>
Public Overridable Property EffectiveDate As Date
<DataMember(Order:=8)>
Public Overridable Property ResponseStatus As ResponseStatus
End Class
End Namespace
End Namespace
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
}
}
}