GET GetSendRequest?TransactionReference={TransactionReference}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
TransactionReference

string

Required

Body Parameters

None.

Response Information

Resource Description

sendrequest
NameDescriptionTypeAdditional information
id

integer

None.

DateCreated

date

None.

LastModified

date

None.

FromUserId

string

None.

ToUserId

string

None.

DateReceived

date

None.

AmountReceived

decimal number

None.

AmountSent

decimal number

None.

DateSent

date

None.

Sent

boolean

None.

Received

boolean

None.

TransactionRef

string

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "DateCreated": "2025-12-06T06:29:03.2548977+02:00",
  "LastModified": "2025-12-06T06:29:03.2548977+02:00",
  "FromUserId": "sample string 4",
  "ToUserId": "sample string 5",
  "DateReceived": "2025-12-06T06:29:03.2548977+02:00",
  "AmountReceived": 6.1,
  "AmountSent": 7.1,
  "DateSent": "2025-12-06T06:29:03.2548977+02:00",
  "Sent": true,
  "Received": true,
  "TransactionRef": "sample string 10"
}

application/xml, text/xml

Sample:
<sendrequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZakaPayAPI.Database">
  <AmountReceived>6.1</AmountReceived>
  <AmountSent>7.1</AmountSent>
  <DateCreated>2025-12-06T06:29:03.2548977+02:00</DateCreated>
  <DateReceived>2025-12-06T06:29:03.2548977+02:00</DateReceived>
  <DateSent>2025-12-06T06:29:03.2548977+02:00</DateSent>
  <FromUserId>sample string 4</FromUserId>
  <LastModified>2025-12-06T06:29:03.2548977+02:00</LastModified>
  <Received>true</Received>
  <Sent>true</Sent>
  <ToUserId>sample string 5</ToUserId>
  <TransactionRef>sample string 10</TransactionRef>
  <id>1</id>
</sendrequest>