GET api/PaymentProcess/NotifyUsersOfProcessedPayment

Request Information

URI Parameters

None.

Body Parameters

PaymentProcessingDetail
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

TypeOfPayment

string

None.

NameOfFileToProcess

string

None.

PaymentProcessed

boolean

None.

PaymentProcessedDateTime

date

None.

PaymentProcessedBy

string

None.

PaymentToOrganisationBatchId

globally unique identifier

None.

FileData

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": "90b21438-f933-41f4-9e10-ac7b2942571b",
  "TypeOfPayment": "sample string 2",
  "NameOfFileToProcess": "sample string 3",
  "PaymentProcessed": true,
  "PaymentProcessedDateTime": "2025-12-06T14:51:38.3619718+11:00",
  "PaymentProcessedBy": "sample string 5",
  "PaymentToOrganisationBatchId": "cd1e8244-aa3c-4b82-b083-33bbeea6bdd4",
  "FileData": "sample string 6"
}

application/xml, text/xml

Sample:
<PaymentProcessingDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GenerousAPI.DataAccessLayer">
  <FileData>sample string 6</FileData>
  <Id>90b21438-f933-41f4-9e10-ac7b2942571b</Id>
  <NameOfFileToProcess>sample string 3</NameOfFileToProcess>
  <PaymentProcessed>true</PaymentProcessed>
  <PaymentProcessedBy>sample string 5</PaymentProcessedBy>
  <PaymentProcessedDateTime>2025-12-06T14:51:38.3619718+11:00</PaymentProcessedDateTime>
  <PaymentToOrganisationBatchId>cd1e8244-aa3c-4b82-b083-33bbeea6bdd4</PaymentToOrganisationBatchId>
  <TypeOfPayment>sample string 2</TypeOfPayment>
</PaymentProcessingDetail>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'PaymentProcessingDetail'.

Response Information

Resource Description

None.