A payout request is a customer request to withdraw funds. This topic describes the payout request resource and its lifecycle.
Customers create payout requests when they complete a withdrawal form, when the Create a payout request API operation is called, or when a member of your organization creates a payout request on the customer's behalf. To integrate payout requests using the Rebilly API, see Hosted payout form API integration. To integrate a cashier form with both deposit and withdrawal tabs, see Integrate a cashier form.
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 methods to display in withdrawal forms.
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.
This section describes the lifecycle of a payout request.
The following are all payout request status types.
| Status | Description |
|---|---|
| A payout request is created and begins the pending period configured for the website. New payout requests can be configured to begin in the A member of your organization can skip the pending period and move the request to the
|
ready | The pending period ends, or a member of your organization skips the pending period, and the request is ready for approval. When payout request status is ready, the customer can select a payment instrument if one is not already assigned. |
approved | A member of your organization approves the payout request. |
in-progress | Funds are distributed across payment instruments and gateways, and processed as allocations. |
fulfilled | Allocations have been processed, and the full payout amount has been paid out. |
canceled | The request is canceled by a merchant, customer, or system. Cancellation requires a canceledBy value of customer, merchant, or system. |
split | A 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. |
merged | A member of your organization merges the request into another payout request. |
This section describes the lifecycle for a payout request that is approved and fully paid out.
A payout request is created when a customer completes a withdrawal form, when the Create a payout request API operation is called, or a member of your organization creates one on the customer's behalf. Depending on which initial payout request state is configured, the payout request begins in one of the following states:
pending: The payout request enters thependingstate for a configured period before it can be reviewed or approved by a member of your organization. When the pending period ends, the payout request automatically transitions to thereadystate.ready: The payout request enters thereadystate and can be reviewed and approved immediately by a member of your organization.
If the initial payout request state is not configured, the default status is
ready.To configure the initial state, see Edit payout request settings.
A member of your organization reviews the payout request and approves it. The request transitions to
approved.A member of your organization allocates funds to payment instruments and processes them through the gateway. The payout request transitions to
in-progress.Allocations are processed and the payout request transitions to
fulfilled.
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
- Mock serverhttps://www.rebilly.com/_mock/docs/dev-docs/api/payout-requests/{id}/cancel
- Sandbox serverhttps://api-sandbox.rebilly.com/organizations/{organizationId}/payout-requests/{id}/cancel
- Live serverhttps://api.rebilly.com/organizations/{organizationId}/payout-requests/{id}/cancel
{ "canceledBy": "merchant", "description": "string" }
Example: Payout request canceled by customer
- Mock serverhttps://www.rebilly.com/_mock/docs/dev-docs/api/payout-requests/{id}/cancel
- Sandbox serverhttps://api-sandbox.rebilly.com/organizations/{organizationId}/payout-requests/{id}/cancel
- Live serverhttps://api.rebilly.com/organizations/{organizationId}/payout-requests/{id}/cancel
{ "canceledBy": "merchant", "description": "string" }
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.
The following example describes a payout request that is split from the pending status. You can also split payout requests that are in the ready or approved status.
- A payout request is in the
pendingstatus for$4,000. - Using the Split a payout request operation, a member of your organization splits the payout request into two child requests with amounts of
$3,000and$1,000. - The payout request transitions to
split, and a child payout request is created in thependingstatus for each amount. Each child request has its own lifecycle.
Example: Split a $4,000 payout request into two child requests
- Mock serverhttps://www.rebilly.com/_mock/docs/dev-docs/api/payout-requests/{id}/split
- Sandbox serverhttps://api-sandbox.rebilly.com/organizations/{organizationId}/payout-requests/{id}/split
- Live serverhttps://api.rebilly.com/organizations/{organizationId}/payout-requests/{id}/split
{ "amounts": [ 50, 30, 20 ], "splitReason": "payment-instrument-limit", "splitDescription": "string" }
Blocking a payout request temporarily prevents transitions to ready, approved, in-progress, merged, split, and canceled. It also prevents allocation creation, allocation processing, and cancellation of pending allocations. For example, for suspected fraudulent activity, you can block a payout request to prevent it from being processed until the activity is investigated.
A blocked payout request can still transition to the fulfilled status if allocation processing starts before the payout request is blocked.
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
- Mock serverhttps://www.rebilly.com/_mock/docs/dev-docs/api/payout-requests/{id}
- Sandbox serverhttps://api-sandbox.rebilly.com/organizations/{organizationId}/payout-requests/{id}
- Live serverhttps://api.rebilly.com/organizations/{organizationId}/payout-requests/{id}
{ "status": "pending", "canceledBy": "customer", "cancellationDescription": "string", "description": "string", "blocked": false, "blockReason": "fraud-suspected", "blockDescription": "string" }
Example: Unblock a payout request
- Mock serverhttps://www.rebilly.com/_mock/docs/dev-docs/api/payout-requests/{id}
- Sandbox serverhttps://api-sandbox.rebilly.com/organizations/{organizationId}/payout-requests/{id}
- Live serverhttps://api.rebilly.com/organizations/{organizationId}/payout-requests/{id}
{ "status": "pending", "canceledBy": "customer", "cancellationDescription": "string", "description": "string", "blocked": false, "blockReason": "fraud-suspected", "blockDescription": "string" }
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 |
|---|---|
pending | Allocation is created and awaiting processing. |
queued | Allocation is queued and waiting to be processed. |
processing | Allocation is being processed, and a transaction is being created. |
completed | Allocation is processed, and the gateway approves the transaction. |
failed | An error prevents the allocation from being processed, and the allocation status is set to failed. |
canceled | A member of your organization cancels the allocation before processing, and the allocation status is set to canceled. |
declined | A gateway declines the allocation, and the allocation status is set to declined. |
Available operations:
- To manually allocate funds, use the Create a payout request allocation operation.
- To automatically allocate funds, use the Create an automatic payout request allocation operation.
- To process allocations, use the Initiate processing of allocations operation.
Use batches to group payout requests and perform bulk actions. Each batch has a status that tracks the progress of the batch operation:
| Status | Description |
|---|---|
pending | Batch is pending processing. |
processing | Batch is currently being processed. |
completed | Batch processing is complete. |
failed | Batch processing failed. |
Available operations:
- Create a payout request batch
- Update a payout request batch
- Approve a payout request batch
- Auto allocate a payout request batch
- Block a payout request batch
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.
Use webhooks to notify your systems when payout request events occur. For more information, see Webhooks and Event types.