POST api/CurrencyMaster
Request Information
URI Parameters
None.
Body Parameters
CurrencyMaster| Name | Description | Type | Additional information |
|---|---|---|---|
| MID | integer |
Required |
|
| CURRENCY_CODE | string |
Required Max length: 4 |
|
| DESCRIPTION | string |
Required Max length: 40 |
|
| CURRENCY_FRACTION | string |
Required Max length: 15 |
|
| CONV_RATE | decimal number |
Required |
|
| MUL_DIV | string |
Required Max length: 1 |
|
| MIN_CONV_RATE | decimal number |
Required |
|
| MAX_CONV_RATE | decimal number |
Required |
|
| SYMBOL | string |
Max length: 3 |
|
| SYSTEM_DATE | date |
None. |
|
| BRANCH_CODE | string |
Max length: 6 |
|
| CMBRANCH_CODE | string |
Max length: 6 |
Request Formats
application/json, text/json
Sample:
{
"MID": 1,
"CURRENCY_CODE": "sample string 2",
"DESCRIPTION": "sample string 3",
"CURRENCY_FRACTION": "sample string 4",
"CONV_RATE": 5.1,
"MUL_DIV": "sample string 6",
"MIN_CONV_RATE": 7.1,
"MAX_CONV_RATE": 8.1,
"SYMBOL": "sample string 9",
"SYSTEM_DATE": "2025-12-16T07:34:16.3792625+04:00",
"BRANCH_CODE": "sample string 11",
"CMBRANCH_CODE": "sample string 12"
}
text/html
Sample:
{"MID":1,"CURRENCY_CODE":"sample string 2","DESCRIPTION":"sample string 3","CURRENCY_FRACTION":"sample string 4","CONV_RATE":5.1,"MUL_DIV":"sample string 6","MIN_CONV_RATE":7.1,"MAX_CONV_RATE":8.1,"SYMBOL":"sample string 9","SYSTEM_DATE":"2025-12-16T07:34:16.3792625+04:00","BRANCH_CODE":"sample string 11","CMBRANCH_CODE":"sample string 12"}
application/xml, text/xml
Sample:
<CurrencyMaster xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/webAppApi.Models.Master"> <BRANCH_CODE>sample string 11</BRANCH_CODE> <CMBRANCH_CODE>sample string 12</CMBRANCH_CODE> <CONV_RATE>5.1</CONV_RATE> <CURRENCY_CODE>sample string 2</CURRENCY_CODE> <CURRENCY_FRACTION>sample string 4</CURRENCY_FRACTION> <DESCRIPTION>sample string 3</DESCRIPTION> <MAX_CONV_RATE>8.1</MAX_CONV_RATE> <MID>1</MID> <MIN_CONV_RATE>7.1</MIN_CONV_RATE> <MUL_DIV>sample string 6</MUL_DIV> <SYMBOL>sample string 9</SYMBOL> <SYSTEM_DATE>2025-12-16T07:34:16.3792625+04:00</SYSTEM_DATE> </CurrencyMaster>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ObjectNone.
Response Formats
application/json, text/json, text/html
Sample:
{}
application/xml, text/xml
Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />