Skip to main content

Payout Transactions

Learn more about the Payment Transaction resource

The Payment Transaction resource represents every line item of a Payout. Every Payout Transaction belongs to a Payout resource.

Endpoints

GET /payouts/:id/transactions

The Payment Transaction Resource

{
"id": "po_txn_bJdGtjXC3NNRYpm3ndzzKi2WfsnZa4bs",
"resource": "payout_transaction",
"amount": 4569600,
"net_amount": 2664200,
"transaction_id": "pay_aJsGbj2C34NR2pmzndnzNiSWfsn6N21S",
"transaction_type": "payment",
"created_at": 1747235098,
"updated_at": 1747263620
}

Attributes


id string

Unique identifier for the resource. The prefix is po_txn_.


resource string

Represents the resource's type. The value is payout_transaction.


amount string

The amount of the Payout Transaction.

If the transaction_type is payment, the value is the gross amount. This is what your customers paid you. If the transaction_type is refund, the value is the successfully refunded amount. If the transaction_type is adjustment, the value is the debit or credit adjustment from the Payout.

This is a positive or negative integer in the smallest currency unit, cents. Positive integer is credit to your final payout while negative integer is debit to your final payout.

If the amount is ₱ 120.50, the amount of the Payout Transaction should be 12050.


net_amount string

The net amount of the Payout Transaction.

If the transaction_type is payment, the value is the gross amount less the deductibles such as fees and tax. If the transaction_type is refund, the value is the successfully refunded amount. If the transaction_type is adjustment, the value is the debit or credit adjustment from the Payout.

This is a positive or negative integer in the smallest currency unit, cents. Positive integer is credit to your final payout while negative integer is debit to your final payout.

If the net amount is ₱ 120.50, the net amount of the Payout Transaction should be 12050.


transaction_id string

The transaction_id is the unique identifier of the Payout Transaction's transaction type.

If the transaction_type is payment, it is the ID of the Payment resource.

If the transaction_type is refund, it is the ID of the Refund resource.

If the transaction_type is adjustment, it is the ID of the Adjustment resource.


transaction_type string

The transaction type of the Payout Transaction. The possible values are payment, refund, and adjustment.


created_at timestamp

The time the resource was created and measured in seconds since the Unix epoch.


updated_at timestamp

The time the resource was updated and measured in seconds since the Unix epoch.