📓 Reject a Measure
This endpoint is used to confirm or reject the identification of a user associated with a specific weight measurement. Rejecting a measurement helps refine the accuracy of user identification algorithms by providing critical feedback.
When to reject a measurement ?
See Understanding the Algorithm
Endpoint Details:
- Endpoint:
https://wbsapi.withings.net/v2/measure
- Method:
POST
Required Parameters:
access_token
: A valid access token for session authentication.action
: Must take the valueconfirmuser
grpid
: The ID of the measurement group that the weight measure belongs to.is_confirmed
: A boolean value (1
for confirmed,0
for rejected)
Example Request: Rejecting a User Measurement
To reject a measurement:
{
"access_token": "YourAccessToken",
"action": "confirm",
"grpid": "12345",
"is_confirmed": 0
}