Skip to main content

Release 2025-12-23

This release introduces full checkout transparency in the Getpaid Dashboard, improved discoverability through the API, and additional data points to better understand client action required estimates.

Platforms can now view the checkouts they’ve created in the Getpaid Dashboard or via the Getpaid API, monitor their current status, and gain a comprehensive view of the buyer journey through detailed visibility into payment attempts and outcomes.

Additionally, identifying payments that belong to a recurring series is now simpler, with clear navigation to the initial payment in each series.

Checkouts in the Getpaid Dashboard

Platforms can now access detailed checkout information and gain full visibility into both completed and in-progress checkouts directly from the Getpaid Dashboard. The new Checkouts module supports filtering by fields such as reference number, seller, and status, enabling a clear and actionable operational view.

The table layout can be customized by reordering columns and adjusting their visibility, allowing platforms to configure the experience to better align with their workflows.

Checkouts module in the Dashboard

New Checkouts module

Platforms can also save searches and filters using the Quickviews feature. Frequently used filters can be stored and optionally pinned, ensuring fast and consistent access directly from the Dashboard sidebar.

Quickviews feature

Quickviews

See checkout details and payment attempts

As part of the new Checkouts module, platforms can now access a dedicated checkout details view. This view presents core checkout information alongside all payment attempts associated with the checkout, delivering full visibility into the checkout lifecycle and buyer journey.

Individual payment attempts can be selected to view attempt-specific details, and platforms can navigate from the Payments module back to the originating checkout, enabling an end-to-end view of the user flow.

Checkout details

Checkout details in the Dashboard

Filter checkouts and payments

Platforms can programmatically access detailed checkout and payment data using the query resources API. This unified querying capability enables deeper operational insight, monitoring, and easier analysis across checkout and payment lifecycles.

Checkouts can be filtered across a range of fields to gain clear visibility into initiated checkouts and their current status, supporting more effective reporting and automation.

POST api.getpaid.io/v2/checkouts/query
{
"type": "checkouts", // Optional
"filters": {
"seller_legal_name": "Titan Biking",
"statuses": ["in_progress"]
}
}

The same querying pattern is available for payments through a closely aligned API, providing a consistent experience across resources. This shared structure simplifies integrations and allows platforms to work with checkout and payment data using a common model.

POST api.getpaid.io/v2/payments/query
{
"type": "payments", // Optional
"filters": {
"seller_legal_name": "Titan Biking",
"statuses": ["captured"]
}
}

Checkout estimated update time

New data points have been introduced in the Checkout API and applicable webhooks to indicate when an update estimate is available. The new estimated_update_before field enables platforms to better understand when a status update is expected, based on the payment method selected by the buyer.

GET api.getpaid.io/v2/checkouts
{
"id": "cko_44678r08jtm8zbt227tzhc4nw5",
"reference": "ORD-202510-0232",
[...]
"estimated_update_before": "2025-10-24T13:52:57.312Z",
[...]
}