Queries all background processes accessible to the authenticated user with optional filtering and pagination.
inputModel (BackgroundProcessQueryRequest) — Filtering options including:
status (string, optional) — Filter by process status (Pending, Running, Completed, Failed, Cancelled).dateFrom (datetime, optional) — Start of date range filter.dateTo (datetime, optional) — End of date range filter.limit (int, optional) — Maximum number of records to return (default: 20).offset (int, optional) — Number of records to skip for pagination.BackgroundProcessQueryResponse containing a list of background processes matching the filter criteria.
The access token received from the authorization server in the OAuth 2.0 flow.
Background process type filter.
AccountUpdaterUploadFile, AccountUpdaterDownloadFile, DownloadChargebackReport, ProcessImportBatches, ReportDataSync, CompanyProjectKeysRegenerate, ServiceIndexes, DownloadPurchaseRefundReport, ExportReport, CompanyAccessKeyExpiration, CreateTransactionsFromChargebacks "BackgroundProcessType.DownloadChargebacks"
Collection of statuses to include in the results.
Fail, Done, InProgress, Pending, Frozen, PendingCancel, Cancelled "[BackgroundProcessStatus.Queued, BackgroundProcessStatus.Running]"
Always returned. Check the success property in the response body to determine if the operation succeeded.
Standard response structure containing operation status and error information. Represents the response returned when querying for background process entries.
True if the operation completed successfully; false if an error occurred.
true
Result code indicating the outcome of the operation.
Unknown, Success, BadRequest, Unauthorized, NotFound, Error 200
Human-readable error message when an error occurs.
null
Background process entries that match the query.
[
{
"Id": "822a4c1c-64c9-4306-8e02-2d3c839f72a8",
"Status": "Completed"
}
]