POST
/
v1beta
/
tasks
/
groups
Create Task Group
curl --request POST \
  --url https://api.parallel.ai/v1beta/tasks/groups \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "metadata": {}
}'
{
  "taskgroup_id": "<string>",
  "metadata": {},
  "status": {
    "num_task_runs": 123,
    "task_run_status_counts": {},
    "is_active": true,
    "status_message": "<string>",
    "modified_at": "2025-04-24T18:56:22.513132Z"
  },
  "created_at": "2025-04-24T18:56:22.513132Z"
}

Authorizations

x-api-key
string
header
required

Body

application/json

Request to create a task group.

Response

200
application/json

Successful Response

Response object for a task group, including its status and metadata.