PUT api/transactionitems/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
transactionitem| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| DatePurchased | date |
None. |
|
| ItemId | integer |
None. |
|
| Price | decimal number |
None. |
|
| Qty | integer |
None. |
|
| LineTotal | decimal number |
None. |
|
| ProductCode | string |
None. |
|
| IsTicket | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"DatePurchased": "2026-02-17T16:11:10.892438+02:00",
"ItemId": 1,
"Price": 1.0,
"Qty": 1,
"LineTotal": 1.0,
"ProductCode": "sample string 2",
"IsTicket": true
}
application/xml, text/xml
Sample:
<transactionitem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZakaPayAPI.Database"> <DatePurchased>2026-02-17T16:11:10.892438+02:00</DatePurchased> <IsTicket>true</IsTicket> <ItemId>1</ItemId> <LineTotal>1</LineTotal> <Price>1</Price> <ProductCode>sample string 2</ProductCode> <Qty>1</Qty> <id>1</id> </transactionitem>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.