GET api/PaymentProcess/NotifyUsersOfProcessedPayment
Request Information
URI Parameters
None.
Body Parameters
PaymentProcessingDetail| Name | Description | Type | Additional 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": "9a2aa44b-2a38-4260-8860-6a0bfeef6cf1",
"TypeOfPayment": "sample string 2",
"NameOfFileToProcess": "sample string 3",
"PaymentProcessed": true,
"PaymentProcessedDateTime": "2026-03-29T14:58:17.4946162+11:00",
"PaymentProcessedBy": "sample string 5",
"PaymentToOrganisationBatchId": "f5ef8a7e-7de3-477c-8f4f-361784d4d8bc",
"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>9a2aa44b-2a38-4260-8860-6a0bfeef6cf1</Id> <NameOfFileToProcess>sample string 3</NameOfFileToProcess> <PaymentProcessed>true</PaymentProcessed> <PaymentProcessedBy>sample string 5</PaymentProcessedBy> <PaymentProcessedDateTime>2026-03-29T14:58:17.4946162+11:00</PaymentProcessedDateTime> <PaymentToOrganisationBatchId>f5ef8a7e-7de3-477c-8f4f-361784d4d8bc</PaymentToOrganisationBatchId> <TypeOfPayment>sample string 2</TypeOfPayment> </PaymentProcessingDetail>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.