Skip to main content
PATCH
/
v1
/
payouts
/
{id}
/
make_processing
Make Processing
curl --request PATCH \
  --url https://{defaultHost}/v1/payouts/{id}/make_processing \
  --header 'Authorization: Bearer <token>'
{
  "id": "93880155-f230-494f-9e11-35d1e0ea5279",
  "object": "payout",
  "currency": "usd",
  "description": null,
  "end_date": 1767571200,
  "live_mode": true,
  "manual": false,
  "payout_email": null,
  "status": "processing",
  "total_commission_amount": 9900,
  "affiliation": "d262fac0-3fe6-4d2c-8439-40377de00d2b",
  "payout_group": null,
  "created_at": 1767909731,
  "updated_at": 1767909731
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200 - application/json

Success

id
string | null

The UUID of the specific object.

object
string

A string describing the object type returned.

description
string | null

An optional brief description of what this payout is for.

end_date
integer

All approved referrals through this day will be included in the payout.

live_mode
boolean

Set to true if this payout is in live mode, and set to false if it is in test mode.

manual
boolean

Whether or not this payout was created manually or automatically from approved referrals.

total_commission_amount
integer

The amount in cents that will be paid out to the affiliate. For manual payouts, this is set directly. For automatic payouts, this is calculated from the sum of approved referrals.

currency
string

Three-letter ISO currency code, in lowercase. If not set, this value will fallback to the default Account currency.

status
string

The status of the payout – one of completed or processing.

affiliation

Expandable – The associated affiliation ID.

payout_group

Expandable – The associated payout group ID.

payout_email
string | null

The affiliate's payout email address.

referrals

Expandable – Property not returned unless expanded.

created_at
integer | null

Time at which the object was created. Measured in seconds since the Unix epoch.

updated_at
integer | null

Time at which the object was last updated. Measured in seconds since the Unix epoch.