patch_answer_set
PATCH /answer_sets/:id
Update attributes of an answer_set
PATCH /api/v1/answer_sets/:id
{
"data": {
"type": "answer_sets",
"attributes": {
"resolved": true,
"resolver": "john.doe@example.com",
"root_causes": ["ROOT-CAUSE-1-UUID", "ROOT-CAUSE-2-UUID"],
"action_taken": ["ACTION-TAKEN-1-UUID", "ACTION-TAKEN-2-UUID"]
}
}
}
attributes
| attribute | description |
|---|---|
| resolved boolean optional | new answer_set status. |
| resolver string optional | answer_set resolver email. |
| root_causes array[string] optional | list of root_causes to link to the answer_set. It will overwrite the previous list. |
| action_taken array[string] optional | list of action_taken to link to the answer_set. It will overwrite the previous list. |