all receipts
Returns a list of the receipts attached to this donation
For custom components:
RaiselyComponents.api.one('donations', '{uuid}').get('receipts', params = {}, headers = {}) => Promise<{result}>
:fa-gears: See Restie Response Data for a more detailed overview of responses through the client wrapper
Path parameters
The uuid of the record
Query parameters
Returns the full record when authenticated
Search query to find records matching
The number of records to limit per page
The pagination offset (in number of records)
The record attribute to filter on (use in conjunction with order)
The direction to sort (only applied if sort is also provided) * asc - Ascending * desc - Descending
Filter User based on their postcode value
Filter User based on their country value
Filter User based on their facebookId value
Filter User based on their email value
Filter User based on their fullName value
Filter User based on their phone_number value
Filter Receipt based on their status value
Filter by receipt templates uuid
Filter by donation uuid
Headers
A valid HTTP Bearer token, required to access private records.
Response
The resulting collection of Receipt records
Example response
{
"data": [
{
"campaignUuid": "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa",
"createdAt": "2020-12-03T06:52:46.330Z",
"donationUuid": "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa",
"id": 12345,
"isReissue": true,
"templateUuid": "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa",
"updatedAt": "2020-12-03T06:52:46.330Z",
"uuid": "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa"
}
],
"pagination": {
"total": 10,
"pages": 2,
"offset": 5,
"limit": 5
}
}