Lists payments made with account alias (alias payment reference) for double invoice.
Input parameters is either ExternalID, StartDate or QueueID – function list every payment added to the queue after input record. Subscriber can use these parameters as pointers to the queue and a start point. If last processed record is stored then it can be used as input for next read to get only the unprocessed ones.
Example call:
{
"Queueid": 16
}
// or
{
"StartDate": "2019-09-02"
}
// or
{
"purchaseid": "235b0f1f0f08b2b51f9291e6c0afab87"
}
Response:
[
{
"QueueId": 16,
"StartDate": "2019-10-08T21:34:11.787",
"PaymentDate": "2019-10-08T21:34:11.787",
"PaymentAmount": 111.0,
"AliasAccount": "571255410129455",
"OriginalPurchaseId": "ab8f06a850eb0a7eec6c4cc334e28d3a",
"RecurringToken": "1e446af43d8d54fe2011ee500f79c4e2"
},
{
"QueueId": 17,
"StartDate": "2019-10-08T21:34:11.787",
"PaymentDate": "2019-10-08T21:34:11.787",
"PaymentAmount": 99.0,
"AliasAccount": "047868509186057",
"OriginalPurchaseId": "9360739e18eafe1a1ea6c6dddf479b98",
"RecurringToken": "fceafea7397c49ee167f16e8ac8dff82"
}
]