POST
/
api
/
v1
/
tasks
/
artifacts
/
{artifact_id}
/
review
Review Task Artifact
curl --request POST \
  --url https://api.jobsim.work/api/v1/tasks/artifacts/{artifact_id}/review \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "status": "<string>",
  "review_notes": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

artifact_id
string
required

Body

application/json
status
string
required

approved or rejected

review_notes
string | null

Response

Successful Response