Skip to main content
PUT
/
api
/
payouts
/
{id}
Update Payout
curl --request PUT \
  --url https://api.example.com/api/payouts/{id} \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "status": "<string>",
  "provider_metadata": {}
}
'
{
  "id": "pay_abc123",
  "status": "processing"
}
Authorization
string
required
Bearer token from Auth0
id
string
required
Payout ID
status
string
New status (processing, completed, failed, cancelled)
provider_metadata
object
Provider-specific metadata to update
{
  "id": "pay_abc123",
  "status": "processing"
}