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.

Returns the Stripe Connect account status for a community. Used to determine if payouts are enabled and to display appropriate messaging to the user.

Parameters

No parameters.

Returns

Returns the Stripe Connect account activation status and a user-facing message.
FieldTypeDescription
activebooleanWhether the Stripe Connect account is fully set up and activated
messagestringUser-facing message describing the account status
  curl -H "Authorization: $ACCESS_TOKEN" \
    --request GET \
    --url https://api.onlydrams.app/api/v1/communities/:community_id/payouts/settings
{
	"active": true,
	"message": "Your Stripe connect account is set up and activated. To manage your settings please visit the OnlyDrams web version."
}