POST
/
api
/
v1
/
tasks
/
{task_id}
/
submit
Submit Task
curl --request POST \
  --url https://api.jobsim.work/api/v1/tasks/{task_id}/submit \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form 'text_content=<string>' \
  --form files.items='@example-file'
{
  "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

task_id
string
required

Body

multipart/form-data
text_content
string | null
files
file[]

Response

Successful Response