transaction - aareano/ifshop-wiki GitHub Wiki

This drop is corresponds to Shopify's.

missing properties

none

additional properties

none



transaction.id

Returns a unique numeric identifier for the transaction.


transaction.amount

Returns the amount of the transaction. Use one of the money filters to return the value in a monetary format.


transaction.name

Returns the name of the transaction.

Input

{{ transaction.name }}

Output

c251556901.1

transaction.status

Returns the status of the transaction.


transaction.status_label

Returns the translated output of a transaction's status.

Input

English: {{ transaction.status }}
French: {{ transaction.status_label }}

Output

English: Success
French: Réussite

transaction.created_at

Returns the timestamp of when the transaction was created. Use the date filter to format the timestamp.


transaction.receipt

Returns text with information from the payment gateway about the payment receipt. This includes whether the payment was a test case and an authorization code if one was included in the transaction.


transaction.kind

Returns the type of transaction. There are five transaction types:

  • authorization: the reserving of money that the customer has agreed to pay.
  • capture: the transfer of the money that was reserved during the authorization stage.
  • sale: a combination of authorization and capture, performed in one step.
  • void: the cancellation of a pending authorization or capture.
  • refund: the partial or full refund of the captured money to the customer.

transaction.gateway

Returns the name of the payment gateway used for the transaction.

Input

{{ transaction.gateway }}

Output

Cash on Delivery (COD)

transaction.payment_details

The payment_details drop contains additional properties related to the payment method used in the transaction.