PUT
/
evaluations
/
{id}
curl --request PUT \
  --url https://api.fixa.dev/v1/evaluations/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "enabled": true,
  "isCritical": true,
  "params": {},
  "evaluationTemplateId": "<string>",
  "scenarioId": "<string>",
  "evaluationGroupId": "<string>"
}'
{
  "id": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "enabled": true,
  "isCritical": true,
  "params": {},
  "evaluationTemplateId": "<string>",
  "scenarioId": "<string>",
  "evaluationGroupId": "<string>",
  "agentId": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Body

application/json

Response

200
application/json
Evaluation updated successfully

The response is of type object.