Skip to main content

Documentation Index

Fetch the complete documentation index at: https://api.docs.onlydrams.app/llms.txt

Use this file to discover all available pages before exploring further.

Requests a payout to the community’s connected bank account. The payout will be processed through Stripe and typically arrives within 2-3 business days.

Parameters

amount
integer
required
The payout amount in cents. Must be greater than zero and cannot exceed the available balance.

Returns

Returns a success message if the payout was created successfully. Returns an error message if the payout could not be created.
  curl -H "Authorization: $ACCESS_TOKEN" \
    -H "Content-Type: application/json" \
    --request POST \
    --url https://api.onlydrams.app/api/v1/communities/:community_id/payouts \
    --data '{"amount": 100000}'
{
	"message": "Payout created successfully"
}