Sign in

Create a charge

documented

Charge a Beeminder user a specified amount with an optional note.

POST /chargesChargesno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://www.beeminder.com/api/v1/charges.json" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -d "user_id={{$user_id}}&amount={{$amount}}&note={{$note}}"
Create a charge · beeminder · OpenIntegrations