cURL
curl --request POST \ --url https://backend.clipvision.ai/api/task/create/ \ --header 'Authorization: Basic <encoded-value>' \ --header 'Content-Type: application/json' \ --data ' { "task_name": "<string>", "task_status": 123 } '
{ "task_id": 1, "task_name": "test_task", "task_status": 1, "user_id": 1 }
This API endpoint allows the creation of a new task.
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
1
Successfully created the task
Task OpenAPI Schema