Sign in

Update a datapoint

documented

Update an existing datapoint (by ID) for the given goal.

PUT /users/{u}/goals/{g}/datapoints/{id}.jsonGoalsno 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/users/{{$user_id}}/goals/{{$goal_id}}/datapoints/{{$datapoint_id}}.json" \
  -X PUT \
  -H "Accept: application/json" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -d "auth_token={{BEEMINDER_API_KEY}}" \
  -d "timestamp={{timestamp}}" \
  -d "value={{value}}" \
  -d "comment={{comment}}"
Update a datapoint · beeminder · OpenIntegrations