Transaction

Webhook Content

Status values

  • waiting: Order placed

  • confirmed: Successful payment

  • cancelled: Aborted by customer

  • declined: Failed 3D secure auth or declined by issuer bank

  • authorized: Successful tokenization

  • reserved: Successful reservation

  • refunded: Full refund

  • partially-refunded: Partial refund

  • refund_pending: Refund is beeing processed

  • chargeback: Card holder returns money

  • error: An issue happened during the payment process

All amounts or fees are always provided in the smallest unit of the transaction currency

<?php
array(
  'id' => 1,
  'uuid' => '82m09f9',
  'time' => '2014-11-18 13:44:53',
  'status' => 'waiting',
  'lang' => 'en',
  'psp' => 'Test',
  'payrexx_fee' => 0,
  'payment' => array(
    'brand' => 'VISA'
  ),
  'metadata' => Metadata,
  'invoice' => Invoice,
  'contact' => Contact,
);

Last updated