Authorize payout
Authentication
OAuth2 Bearer access token from the client-credentials flow. See OAuth authentication.
Long-lived API token sent in the requestToken header. See API token authentication.
Headers
Optional but recommended A unique ID that you can include to prevent duplicating objects or transactions in the case that a request is sent more than once. This key isn’t generated in Payabli, you must generate it yourself. This key persists for 2 minutes. After 2 minutes, you can reuse the key if needed.
Query parameters
When true, the authorization bypasses the requirement for unique bills, identified by vendor invoice number. This allows you to make more than one payout authorization for a bill, like a split payment.
When true, Payabli won’t automatically create a bill for this payout transaction.
When true, the request creates a new vendor record, regardless of whether the vendor already exists.
Request
Payment method object for vendor payouts.
{ method: "managed" }- Managed payment method{ method: "vcard" }- Virtual card payment method{ method: "check" }- Check payment method{ method: "ach", achHolder: "...", achRouting: "...", achAccount: "...", achAccountType: "..." }- ACH payment method with bank details{ method: "ach", storedMethodId: "..." }- ACH payment method using stored method ID{ method: "wire", achHolder: "...", achRouting: "...", achAccount: "...", achAccountType: "..." }- Wire transfer payment method (US only, irrevocable){ method: "rtp", achHolder: "...", achRouting: "...", achAccount: "...", achAccountType: "..." }- Real-Time Payments method (US only, irrevocable)
When true, Payabli captures the transaction asynchronously after a
successful authorization. The authorization request returns once the
transaction is authorized; capture happens later, and the response
doesn’t confirm capture. To confirm capture succeeded, listen for the
payout_transaction_approvedcaptured
webhook event.
When false, you must manually capture the transaction after a
successful authorization. Defaults to false.
See Manage payouts with the API for more information.
Response
Code for the response. Learn more in API Response Codes.
Field not in use on this endpoint. It always returns 0.
Boolean indicating whether the operation was successful. A true value
indicates success. A false value indicates failure.
Response text for operation: ‘Success’ or ‘Declined’.