payment_method_from_ref
Get payment method from reference code
Example
1
2
3
4
5
6
7
8
9
| {% assign paymentMethod = 'reference_code' | payment_method_from_ref %}
{{ paymentMethod.currency }} -> DKK
{{ paymentMethod.bank_name }}
{{ paymentMethod.bank_country }}
{{ paymentMethod.type }}
{{ paymentMethod.iban }}
{{ paymentMethod.swift_bic }}
{{ paymentMethod.ocr_pattern }}
{{ paymentMethod.payment_instruction }}
|
| Type |
Parameter |
Description |
Required |
| string |
referenceCode |
Reference code of payment method. Comes before the | sign. |
Required |
Output
| Type |
Description |
| mixed |
The payment method as an object |