Skip to main content
POST
/
api
/
v1
/
anomalies
/
{id}
/
hypotheses
Add or confirm hypotheses (tags) for an anomaly
curl --request POST \
  --url http://localhost:3000/api/v1/anomalies/{id}/hypotheses \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "tags": "<string>",
  "confirm": "<string>",
  "note": "<string>"
}
'
{
  "message": "<string>",
  "data": {}
}

Authorizations

Authorization
string
header
required

JWT obtained from POST /api/v1/auth/login.

Path Parameters

id
string
required

id identifier

Body

application/json
tags
string

tags — see API source for exact type.

confirm
string

confirm — see API source for exact type.

note
string

note — see API source for exact type.

Response

OK

message
string
data
object