cURL
curl --request GET \ --url https://backend.clipvision.ai/api/task/ \ --header 'Authorization: Basic <encoded-value>'
{ "task_id": 1, "task_name": "test_task", "task_status": 1, "user_id": 1 }
This API endpoint allows retrieval of a specific task using its ID.
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
Successfully retrieved the task
Task OpenAPI Schema