Update a datapoint
documentedUpdate an existing datapoint (by ID) for the given goal.
PUT /users/{u}/goals/{g}/datapoints/{id}.jsonGoalsno implementation yet0 runsNo 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}}"