Release 2026-04-29
This release expands onboarding operations across the API and dashboard.
Platforms can now query onboarding applications and accounts using the same filtering, sorting, and pagination model already used for other Getpaid resources. This release also improves seller account maintenance in the Getpaid Dashboard with clearer application type visibility, support for change-request flows, and account branding updates such as theme changes and logo uploads.
Query onboarding applications and accounts
You can now query onboarding applications and accounts through dedicated API endpoints, making it easier to build operational tooling and review seller onboarding activity at scale.
These endpoints follow the same query pattern already used for payments and checkouts, so you can reuse the same integration approach for filters, sorting, and pagination. The same capability also powers dedicated Applications and Accounts views in the Getpaid Dashboard.
{
"type": "applications",
"filters": {
"statuses": ["submitted", "completed"],
"country": "DE",
"legal_name": "Garage"
},
"sorts": [
{
"field": "created_at",
"direction": "descending"
}
]
}
For more information, see the queries guide, the applications query API, and the accounts query API.
Improve seller account updates in the Getpaid Dashboard
The Getpaid Dashboard now provides a smoother workflow for maintaining seller accounts after their initial onboarding.
Application tables now expose the application type directly, and the onboarding experience supports change-request flows for existing accounts. Teams can also update account branding more easily by changing account themes and including logo uploads as part of change requests.
These improvements reduce the operational overhead of keeping seller information and account presentation up to date without requiring a full onboarding restart.
For more information about operational workflows, see the onboarding applications guide.