Payout requests

A payout request is a customer request to withdraw funds. This topic describes the payout request resource and its lifecycle.

Customers request payouts using a payout form. To integrate a Rebilly payout form into your website, see Payout form integration.

To process payout requests, you must configure at least one gateway for payouts. For more information, see Configure a gateway to manage payout requests and Configure payout methods displayed in payout forms.

Payout request components

A payout request contains the following:

  • Customer: Customer who is requesting a payout.
  • Amount and currency: Requested payout amount and currency.
  • Payment instrument: Payment instrument that the customer selects or adds as the suggested instrument for payout. Payout allocations are not limited to this instrument and can be applied to any instrument the customer has available for payouts.
  • Allocations: How the payout amount is split across payment instruments and gateways.

Payout request lifecycle

This section describes the lifecycle of a payout request.

Payout request status

The following are all payout request status types.

Status Description

pending

A payout request is created and begins the pending period configured for the website.
During the pending period, the customer can select a payment instrument.
To set the pending period, see Edit payout request settings.

If the pending period length is not set, payout requests for that website must be manually marked as ready. For more information, see Mark payout requests in a batch as ready and Mark a payout request as ready.

A member of your organization can skip the pending period and move the request to the ready status. To skip the pending period and move the request to the ready status, select from the following:

readyThe pending period ends, or a member of your organization skips the pending period, and the request is ready for approval.
approvedA member of your organization approves the payout request.
in-progressFunds are distributed across payment instruments and gateways, and processed as allocations.
fulfilledAllocations have been processed, and the full payout amount has been paid out.
canceledThe request is canceled by a merchant, customer, or system. Cancellation requires a canceledBy value of customer, merchant, or system.
splitA member of your organization splits the request into two or more child payout requests. Payout requests are split when the full amount cannot be processed because of amount restrictions, but a smaller amount can be processed. For example, if a payout request for $4,000 cannot be processed, but $3,000 can, split the request into two. Process the $3,000 request first and the $1,000 request later instead of blocking the entire $4,000 request.
mergedA member of your organization merges the request into another payout request.

Payout request created and fulfilled

This section describes the lifecycle for a payout request that is approved and fully paid out.

1 Pending

2 Ready

3 Approved

4 In-progress

5 Fulfilled

1 Pending

2 Ready

3 Approved

4 In-progress

5 Fulfilled

  1. A payout request is created and assigned the pending status. The customer adds a payment instrument to the payout request in a payout form.

  2. The pending period ends, or a member of your organization skips the pending period by marking the payout request as ready. The payout request is assigned the ready status. To set the pending period length, see Edit payout request settings.

    If the pending period length is not set for the website, payout requests remain in the pending state until they are manually marked as ready. For more information, see Mark payout requests in a batch as ready and Mark a payout request as ready.

  3. A member of your organization reviews the payout request and approves it. The request transitions to approved.

  4. A member of your organization allocates funds to payment instruments and processes them through the gateway. The payout request transitions to in-progress.

  5. Allocations are processed and the payout request transitions to fulfilled.

Payout request canceled

This section describes the lifecycle for a payout request that is canceled. A payout request can be canceled from the pending, ready, or approved status.

Cancellation requires a canceledBy value that identifies who initiated the cancellation:

  • merchant: A member of your organization cancels the request.
  • customer: The customer cancels the request.
  • system: The system cancels the request automatically.

To cancel a payout request, use the Cancel a payout request operation.

Example: Payout request canceled by a member of your organization

application/json
{ "canceledBy": "merchant", "description": "string" }

Example: Payout request canceled by customer

application/json
{ "canceledBy": "merchant", "description": "string" }

Payout request split

This section describes the lifecycle for a payout request that is split. A split payout request is a payout that is split into two or more child payout requests.

Payout requests are split when the full amount cannot be processed because of amount restrictions, but a smaller amount can be processed.

For example, if a payout request for $4,000 cannot be processed in full but $3,000 can, split the request into two child requests for $3,000 and $1,000. Process the $3,000 request first and the $1,000 request later instead of blocking the entire $4,000 request.

The parent request transitions to the split status, and each child request follows its own lifecycle. The combined amount of the child requests must equal the parent payout amount.

1 Pending 4000

2 Split

3 Child 3000

3 Child 1000

1 Pending 4000

2 Split

3 Child 3000

3 Child 1000

  1. A payout request is in the pending status for $4,000.
  2. Using the Split a payout request operation, a member of your organization splits the payout request into two child requests with amounts of $3,000 and $1,000.
  3. The payout request transitions to split, and a child payout request is created for each amount. Each child request has its own lifecycle.

Example: Split a $4,000 payout request into two child requests

application/json
{ "amounts": [ 50, 30, 20 ] }

Block a payout request

Blocking a payout request temporarily stops status transitions and allocation operations. For example, for suspected fraudulent activity, you can block a payout request to prevent it from being processed until the activity is investigated.

This action is available for payout requests in the pending, ready, approved, or in-progress status.

To block or unblock a payout request, use the Update a payout request operation and set blocked to true or false. When blocking, provide a blockReason and optionally a blockDescription.

Example: Block a payout request due to suspected fraudulent activity

application/json
{ "status": "pending", "canceledBy": "customer", "cancellationDescription": "string", "description": "string", "blocked": false, "blockReason": "fraud-suspected", "blockDescription": "string" }

Example: Unblock a payout request

application/json
{ "status": "pending", "canceledBy": "customer", "cancellationDescription": "string", "description": "string", "blocked": false, "blockReason": "fraud-suspected", "blockDescription": "string" }

Allocations

Allocations define how the payout amount is distributed across payment instruments and gateways. After a member of your organization approves a payout request, you can create allocations manually or automatically.

Each allocation has a status that tracks the progress of the allocation operation:

Status Description
pendingAllocation is created and awaiting processing.
queuedAllocation is queued and waiting to be processed.
processingAllocation is being processed, and a transaction is being created.
completedAllocation is processed, and the gateway approves the transaction.
failedAn error prevents the allocation from being processed, and the allocation status is set to failed.
canceledA member of your organization cancels the allocation before processing, and the allocation status is set to canceled.
declinedA gateway declines the allocation, and the allocation status is set to declined.

Available operations:

Batches

Use batches to group payout requests and perform bulk actions. Each batch has a status that tracks the progress of the batch operation:

StatusDescription
pendingBatch is pending processing.
processingBatch is currently being processed.
completedBatch processing is complete.
failedBatch processing failed.

Available operations:

To set the saved payout method priority for a batch through the API, use the Update a payout request batch operation and the allocationOrder field.

Webhooks

Use webhooks to notify your systems when payout request events occur. For more information, see Webhooks and Event types.