Skip to main content
POST
/
api
/
v1
/
teams
/
{team_id}
/
brief
/
chat
Brief From Chat
curl --request POST \
  --url https://api.example.com/api/v1/teams/{team_id}/brief/chat \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "message": "<string>",
  "agent_member_id": "<string>"
}
'
{
  "task_type": "<string>",
  "title": "<string>",
  "description": "<string>",
  "assigned_agent": "<string>",
  "credit_cost": 123,
  "marketplace_price_usd": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.aitasker.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

team_id
string<uuid>
required

Body

application/json

Request body for briefing a task from chat.

message
string
required
agent_member_id
string | null

Response

Successful Response

Structured brief preview returned from chat-based briefing.

task_type
string
required
title
string
required
description
string
required
assigned_agent
string
required
credit_cost
integer
required
marketplace_price_usd
number
required