POST api/exchangerate/save

Request Information

URI Parameters

None.

Body Parameters

EXCHANGE_RATE
NameDescriptionTypeAdditional information
SEQ_NO

integer

None.

CURRENCY

string

String length: inclusive between 0 and 5

EXCH_RATE

decimal number

None.

ASON_DATE

date

None.

IS_BASED

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "SEQ_NO": 1,
  "CURRENCY": "sample string 2",
  "EXCH_RATE": 1.0,
  "ASON_DATE": "2024-04-26T20:20:53.3075257-04:00",
  "IS_BASED": true
}

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'EXCHANGE_RATE'.

Response Information

Resource Description

ResponseMessage
NameDescriptionTypeAdditional information
STATUS

string

None.

MESSAGE

string

None.

VALUE

string

None.

Response Formats

application/json, text/json

Sample:
{
  "STATUS": "sample string 1",
  "MESSAGE": "sample string 2",
  "VALUE": "sample string 3"
}