Skip to main content
PATCH
/
v1
/
predictions
/
{prediction_id}
Patch Prediction
curl --request PATCH \
  --url https://api.example.com/v1/predictions/{prediction_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "dismissed": true,
  "feedback": {
    "outcome": "<string>",
    "issue_id": "<string>",
    "note": "<string>"
  }
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

prediction_id
string
required

Body

application/json
dismissed
boolean | null
feedback
PredictionFeedbackBody · object

Response

Successful Response

The response is of type Response Patch Prediction V1 Predictions Prediction Id Patch · object.