Recurring Payment Log

Use this end point to retrieve info about Recurring Payment Log.

Request
Security:
path Parameters
payment_guid
required
string <uuid>
version
required
string
query Parameters
payment_due_date
string <date-time>
start_index
integer <int32>
limit
integer <int32>
Responses
200

Returns the PaymentRecurringLogInfo

400

Bad request.

401

Unauthorized

404

Person not found

500

Server Error

get/api/{version}/payments/{payment_guid}/transactions
Request samples
curl -i -X GET \
  'https://qvapikeybank.qolopay.com/api/{version}/payments/{payment_guid}/transactions?payment_due_date=2019-08-24T14%3A15%3A22Z&start_index=0&limit=0' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'
Response samples
application/json
{
  • "count": 0,
  • "start_index": 0,
  • "end_index": 0,
  • "has_more": true,
  • "data": [
    • {
      • "payment_guid": "ca76c87d-c08b-46dc-a069-5abd4a4ab259",
      • "schedule_guid": "b6f4cc4c-e025-4982-9800-846c354bc66c",
      • "payment_date": "2019-08-24T14:15:22Z",
      • "response_code": "string",
      • "reason_code": "string",
      • "txn_guid": "0017d7fb-f072-440d-86fd-a7ae6238e591",
      • "amount": 0,
      • "error_description": "string"
      }
    ],
  • "check_statuses": [
    • "string"
    ]
}
Copyright © 2023 KeyBank & Qolo. All rights reserved.