POST api/bill/addinvoicecurrency

Request Information

URI Parameters

None.

Body Parameters

tbl_Currency_Master_VM
NameDescriptionTypeAdditional information
ID

integer

None.

CurrencyCode

string

None.

CurrencyName

string

None.

Active

integer

None.

Country

string

None.

CreatedBy

integer

None.

CreatedOn

date

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "CurrencyCode": "sample string 2",
  "CurrencyName": "sample string 3",
  "Active": 1,
  "Country": "sample string 4",
  "CreatedBy": 1,
  "CreatedOn": "2025-12-17T04:28:35.091471-06:00"
}

application/xml, text/xml

Sample:
<tbl_Currency_Master_VM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Case_Management_DAL.ViewModel">
  <Active>1</Active>
  <Country>sample string 4</Country>
  <CreatedBy>1</CreatedBy>
  <CreatedOn>2025-12-17T04:28:35.091471-06:00</CreatedOn>
  <CurrencyCode>sample string 2</CurrencyCode>
  <CurrencyName>sample string 3</CurrencyName>
  <ID>1</ID>
</tbl_Currency_Master_VM>

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 'tbl_Currency_Master_VM'.

Response Information

Resource Description

ErrorClass
NameDescriptionTypeAdditional information
Msg

string

None.

Status

string

None.

IsSuccess

boolean

None.

retrn

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Msg": "sample string 1",
  "Status": "sample string 2",
  "IsSuccess": true,
  "retrn": {}
}

application/xml, text/xml

Sample:
<ErrorClass xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MMC_WebAPI.Utilities">
  <IsSuccess>true</IsSuccess>
  <Msg>sample string 1</Msg>
  <Status>sample string 2</Status>
  <retrn />
</ErrorClass>