List a page of pledge dates where the ID is greater than the optionally supplied fromthisid parameter
Returned in ID order.
Path parameters
-
The ID that is previous to the one to start from e.g. if IDs are 1,2,3 fromthisid as 1 will return 2,3
GET
/pledgedate/list/{fromthisid}
curl \
-X GET https://YOURSITE.infoodle.com/apiv2/pledgedate/list/4 \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
{
"id": 123,
"pledge_id": 544,
"status": "P",
"payment_date_local": "2017-07-18",
"amount": 30,
"form_entry_id": 76,
"user_id": 569,
"paid_date_local": "2024-12-31",
"transaction_id": 435123,
"matched_status": "M",
"gateway_fees": 3.45,
"bank_response": "Card declined",
"datetime_created_utc": "2017-07-18 23:15:10",
"datetime_modified_utc": "2017-09-18 12:12:10"
}
]
Response examples (401)
{
"error": "Unauthorised"
}
Response examples (403)
{
"error": "Invalid Permission"
}