POST api/Transaction

Request Information

URI Parameters

None.

Body Parameters

TransactionInfo
NameDescriptionTypeAdditional information
Transaction_Id

globally unique identifier

None.

Transaction_Code

integer

None.

Category_Id

globally unique identifier

None.

User_Id

globally unique identifier

None.

Chapter_Id

globally unique identifier

None.

Description

string

None.

Amount

decimal number

None.

Is_Transferred

boolean

None.

Is_PaidUsed

boolean

None.

Transaction_Date

date

None.

Created_By

globally unique identifier

None.

TaskInfo_Id

globally unique identifier

None.

PaidUsed_Date

date

None.

_Transaction_Code

CategoryCode

None.

_Category

string

None.

_RoadName

string

None.

PrimaryKey

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "Transaction_Id": "164cfaca-525a-4bed-93f3-0014558de9b4",
  "Transaction_Code": 2,
  "Category_Id": "880a418c-c078-41ae-8175-e4747517baa6",
  "User_Id": "6dc90d48-9c5e-4701-9dd7-6bbaad3b5001",
  "Chapter_Id": "2347cc35-9f6f-4e45-932b-1daae5105ea5",
  "Description": "sample string 6",
  "Amount": 7.0,
  "Is_Transferred": true,
  "Is_PaidUsed": true,
  "Transaction_Date": "2026-06-09T02:35:28.8733499-07:00",
  "Created_By": "615de016-3238-4fbf-b504-820fd68555f0",
  "TaskInfo_Id": "6d680f29-7da6-488b-8835-476e6471dfa1",
  "PaidUsed_Date": "2026-06-09T02:35:28.8743264-07:00",
  "_Transaction_Code": 0,
  "_Category": "sample string 14",
  "_RoadName": "sample string 15",
  "PrimaryKey": "722fd52c-b5e0-4ac8-9871-50caec52c2ce"
}

application/xml, text/xml

Sample:
<TransactionInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/brmcph.entity">
  <PrimaryKey>722fd52c-b5e0-4ac8-9871-50caec52c2ce</PrimaryKey>
  <Amount>7</Amount>
  <Category_Id>880a418c-c078-41ae-8175-e4747517baa6</Category_Id>
  <Chapter_Id>2347cc35-9f6f-4e45-932b-1daae5105ea5</Chapter_Id>
  <Created_By>615de016-3238-4fbf-b504-820fd68555f0</Created_By>
  <Description>sample string 6</Description>
  <Is_PaidUsed>true</Is_PaidUsed>
  <Is_Transferred>true</Is_Transferred>
  <PaidUsed_Date>2026-06-09T02:35:28.8743264-07:00</PaidUsed_Date>
  <TaskInfo_Id>6d680f29-7da6-488b-8835-476e6471dfa1</TaskInfo_Id>
  <Transaction_Code>2</Transaction_Code>
  <Transaction_Date>2026-06-09T02:35:28.8733499-07:00</Transaction_Date>
  <Transaction_Id>164cfaca-525a-4bed-93f3-0014558de9b4</Transaction_Id>
  <User_Id>6dc90d48-9c5e-4701-9dd7-6bbaad3b5001</User_Id>
  <_Category>sample string 14</_Category>
  <_RoadName>sample string 15</_RoadName>
  <_Transaction_Code>Income</_Transaction_Code>
</TransactionInfo>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.