Skip to content

Payment Status Criterion

The Status Search Criterion searches for payments based on payment status.

Arguments

  • status - string that represents the status of the payment, takes values defined in payment processing workflow

Example

PHP

1
2
3
4
5
use Ibexa\Contracts\Payment\Payment\PaymentQuery;

$query = new PaymentQuery(
    new \Ibexa\Contracts\Payment\Payment\Query\Criterion\Status('failed')
);