POST AcceptIncomingPayment

Request Information

URI Parameters

None.

Body Parameters

SendRequestModel
NameDescriptionTypeAdditional information
ToUserId

string

None.

TransactionReference

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ToUserId": "sample string 1",
  "TransactionReference": "sample string 2"
}

application/xml, text/xml

Sample:
<SendRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZakaPayAPI.Models">
  <ToUserId>sample string 1</ToUserId>
  <TransactionReference>sample string 2</TransactionReference>
</SendRequestModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

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": "2026-02-17T16:12:14.3001128+02:00",
  "LastModified": "2026-02-17T16:12:14.3001128+02:00",
  "FromUserId": "sample string 4",
  "ToUserId": "sample string 5",
  "DateReceived": "2026-02-17T16:12:14.3001128+02:00",
  "AmountReceived": 6.1,
  "AmountSent": 7.1,
  "DateSent": "2026-02-17T16:12:14.3001128+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>2026-02-17T16:12:14.3001128+02:00</DateCreated>
  <DateReceived>2026-02-17T16:12:14.3001128+02:00</DateReceived>
  <DateSent>2026-02-17T16:12:14.3001128+02:00</DateSent>
  <FromUserId>sample string 4</FromUserId>
  <LastModified>2026-02-17T16:12:14.3001128+02:00</LastModified>
  <Received>true</Received>
  <Sent>true</Sent>
  <ToUserId>sample string 5</ToUserId>
  <TransactionRef>sample string 10</TransactionRef>
  <id>1</id>
</sendrequest>