Skip to main content
GET
/
api
/
user
/
tasks
/
Get User Tasks API Endpoint
curl --request GET \
  --url https://backend.clipvision.ai/api/user/tasks/ \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "task_id": 1,
    "task_name": "Test Task",
    "status_id": 1,
    "status_description": "Test Task Description",
    "task_advancement": "0%",
    "task_result": "Usually video object."
  }
]

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

Successfully retrieved the user tasks

task_id
integer
task_name
string
status_id
integer
status_description
string
task_advancement
string
task_result
string