Skip to main content
POST
/
agents
/
assists
/
suggest-assignee
Suggest Assignee
curl --request POST \
  --url https://api.example.com/agents/assists/suggest-assignee \
  --header 'Content-Type: application/json' \
  --data '
{
  "task_id": "<string>",
  "candidates": [
    {
      "instance_id": "<string>",
      "type": "<string>",
      "current_load": 123,
      "recent_tasks": [
        "<string>"
      ]
    }
  ]
}
'
{
  "instance_id": "<string>",
  "rationale": "<string>",
  "confidence": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.pragmatiks.io/llms.txt

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

Body

application/json

Request body for the suggest-assignee assist.

Attributes: task_id: Task to assign. candidates: Eligible agent instances for the assist to rank.

task_id
string
required
candidates
AssigneeCandidate · object[]
required

Response

Successful Response

Response body for the suggest-assignee assist.

Attributes: instance_id: Recommended agent instance identifier. rationale: Short explanation of why this candidate was picked. confidence: Model confidence in the suggestion, in [0.0, 1.0].

instance_id
string
required
rationale
string
required
confidence
number
required