Retrieves a list of purchase refunds filtered by date range, status, or transaction for reconciliation and reporting.
projectId (guid, required) — Project identifier for authentication.request (PurchaseRefundQueryRequest, required) — Query filters including:
startDate (datetime, optional) — Start date for refund date range.endDate (datetime, optional) — End date for refund date range.status (string, optional) — Refund status filter (Completed, Pending, Failed).limit (int, optional) — Maximum number of records to return.offset (int, optional) — Number of records to skip for pagination.PurchaseRefundQueryResponse containing refund entries or error information.
The access token received from the authorization server in the OAuth 2.0 flow.
The project identifier for authentication and authorization.
The query request containing filters such as date range, refund status, and pagination parameters.
Represents the filters supported when querying CyberSource purchase refund data. Used by the charge event controller to request paged refund activity for a project.
Start date for the refund query window. Only purchase refunds created on or after this timestamp are returned.
1Offset into the result set used for pagination. Combine with Limit to iterate through multi-page responses.
Maximum number of refund records to return. Guarded to prevent excessive payload sizes when exporting data.
1 <= x <= 10000Indicates whether the query should span every project in the company. When false, the authenticated project scope is applied automatically.
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. Standard query response containing a collection of matching entities. Wraps purchase refund query results for API responses. Inherits paging metadata from BaseQueryResponse.
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
Collection of entities matching the query criteria.
[]