Payment
A payment is originally created from a payment session. Once a payment session is authorized, the payment is created to represent the authorized amount with a given payment method. Payments can be captured, canceled or refunded. Payments can be made towards orders, swaps, order edits, or other resources.
Properties
amount
numberRequiredThe amount that the Payment has been authorized for.
amount_refunded
numberRequiredThe amount of the original Payment amount that has been refunded back to the Customer.
Default: 0
canceled_at
string | DateRequiredThe date with timezone at which the Payment was canceled.
captured_at
string | DateRequiredThe date with timezone at which the Payment was captured.
The details of the cart that the payment session was potentially created for.
cart_id
stringRequiredThe ID of the cart that the payment session was potentially created for.
created_at
DateRequiredThe date with timezone at which the resource was created.
The details of the currency of the payment.
currency_code
stringRequiredThe 3 character ISO currency code of the payment.
data
Record<string, unknown>RequiredThe data required for the Payment Provider to identify, modify and process the Payment. Typically this will be an object that holds an id to the external payment session, but can be an empty object if the Payment Provider doesn't hold any state.
id
stringRequiredThe payment's ID
idempotency_key
stringRequiredRandomly generated key used to continue the completion of a payment in case of failure.
metadata
Record<string, unknown>RequiredAn optional key-value map with additional details
The details of the order that the payment session was potentially created for.
order_id
stringRequiredThe ID of the order that the payment session was potentially created for.
provider_id
stringRequiredThe id of the Payment Provider that is responsible for the Payment
The details of the swap that this payment was potentially created for.
swap_id
stringRequiredThe ID of the swap that this payment was potentially created for.
updated_at
DateRequiredThe date with timezone at which the resource was updated.
Was this section helpful?