PATCH
/
editor
/
v1
/
tasks
/
{taskType}
/
{id}
curl --request PATCH \
  --url https://api.aceaicompany.com/editor/v1/tasks/{taskType}/{id} \
  --header 'Content-Type: application/json' \
  --data '{
  "editor": "<string>",
  "sha": "<string>",
  "as_of_date": "2023-11-07T05:31:56Z",
  "question": "<string>",
  "expected_answer": "<string>",
  "expected_evidence": [
    {
      "path": "<string>",
      "startLine": 123,
      "endLine": 123,
      "about": "<string>",
      "htmlUrl": "<string>"
    }
  ]
}'
{
  "result": "<string>"
}

Purpose: Updates an existing task identified by its task type and id. The request body may include updated values for fields such as editor, sha, as_of_date, question, expected_answer, and expected_evidence.

Path Parameters

taskType
string
required

The type of task to update (e.g. 'ellipsis-tier2-task').

id
integer
required

The unique identifier of the task.

Body

application/json
Payload containing the fields to update.

Request payload for updating an existing ellipsis tier 2 task.

editor
string

Updated editor value.

sha
string

Updated commit SHA.

as_of_date
string

Updated date.

question
string

Updated task question.

expected_answer
string

Updated expected answer.

expected_evidence
object[]

Updated expected evidence.

Response

200
application/json
Task updated successfully.

Response after updating a task.

result
string
required

A confirmation message including details such as rows affected.