POST Transaction/CreatePayment

Request Information

URI Parameters

None.

Body Parameters

TransactionPayment
NameDescriptionTypeAdditional information
payment_id

integer

None.

transaction_id

integer

None.

amount_paid

decimal number

Data type: Currency

Range: inclusive between 1 and 1000000

payment_date

date

None.

payment_info

string

Required

date_added

date

None.

added_by

string

None.

stamp

date

None.

Request Formats

application/json, text/json

Sample:
{
  "payment_id": 1,
  "transaction_id": 2,
  "amount_paid": 3.0,
  "payment_date": "2026-06-04T19:49:38.3611057-07:00",
  "payment_info": "sample string 5",
  "date_added": "2026-06-04T19:49:38.3611057-07:00",
  "added_by": "sample string 7",
  "stamp": "2026-06-04T19:49:38.3611057-07:00"
}

application/xml, text/xml

Sample:
<TransactionPayment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Realty.Model">
  <added_by>sample string 7</added_by>
  <amount_paid>3</amount_paid>
  <date_added>2026-06-04T19:49:38.3611057-07:00</date_added>
  <payment_date>2026-06-04T19:49:38.3611057-07:00</payment_date>
  <payment_id>1</payment_id>
  <payment_info>sample string 5</payment_info>
  <stamp>2026-06-04T19:49:38.3611057-07:00</stamp>
  <transaction_id>2</transaction_id>
</TransactionPayment>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.