PUT api/RechargeHistorys/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

RechargeHistory
NameDescriptionTypeAdditional information
id

integer

None.

DateCreated

date

None.

TransactionRef

string

None.

Amount

decimal number

None.

TransactionName

string

None.

SuccessCode

string

None.

ClientId

string

None.

OwnerId

string

None.

DriverId

integer

None.

UserId

string

None.

MarshalId

string

None.

TransactionType

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "DateCreated": "2025-12-09T04:08:13.0900933+02:00",
  "TransactionRef": "sample string 2",
  "Amount": 1.1,
  "TransactionName": "sample string 3",
  "SuccessCode": "sample string 4",
  "ClientId": "sample string 5",
  "OwnerId": "sample string 6",
  "DriverId": 1,
  "UserId": "sample string 7",
  "MarshalId": "sample string 8",
  "TransactionType": 1
}

application/xml, text/xml

Sample:
<RechargeHistory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PanicSAAPI.Database">
  <Amount>1.1</Amount>
  <ClientId>sample string 5</ClientId>
  <DateCreated>2025-12-09T04:08:13.0900933+02:00</DateCreated>
  <DriverId>1</DriverId>
  <MarshalId>sample string 8</MarshalId>
  <OwnerId>sample string 6</OwnerId>
  <SuccessCode>sample string 4</SuccessCode>
  <TransactionName>sample string 3</TransactionName>
  <TransactionRef>sample string 2</TransactionRef>
  <TransactionType>1</TransactionType>
  <UserId>sample string 7</UserId>
  <id>1</id>
</RechargeHistory>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.