Returns all completed purchases following specified PurchaseID or date
POST /CheckOut2Api/GetPaymentStatusQueue
Returns completed PurchaseIds made after specified date or purchase
Input Parameters
Name | Data Type | Default value | Description |
---|---|---|---|
PurchaseId | String | The ID obtained during the negotiation phase that identified the purchase.Any completed purchase after specified PurchaseID will be returned.Owerides StartDate | |
StartDate | String | Specifies start of the queue. When using date do not send PurchaseId | |
Offset | String | 0 | Paging offset |
PageSize | String | 100 | The max number of results returned in one request |
Example requests
// Returns all purchaseId of purchases completed after specified purchase
{
"PurchaseId": "19ac0d1ee909c302d212b4324d9194b5"
}
// Returns all purchaseId of purchases completed after 2017-11-01 12:00:00
{
"StartDate": "2017-11-01 12:00:00"
}
Output parameters
The method returns a list of PurchaseIds.
"19ac0d1ee909c302d212b4324d9194b5",
"a78cddsea50fcs01d614b8e25dd1s4ew"