Skip to main content
GET
/
v1
/
views
/
command
Get command view
curl --request GET \
  --url https://api.fortressproductivity.com/v1/views/command \
  --header 'Authorization: Bearer <token>'
{
  "metrics": {
    "inbox_count": 1,
    "review_count": 1,
    "active_count": 1,
    "stalled_count": 1,
    "agent_count": 1,
    "question_count": 1
  },
  "questions": [
    {
      "id": "<string>",
      "created_by_actor_id": "<string>",
      "agent_id": "<string>",
      "action_id": "<string>",
      "action_title": "<string>",
      "project_id": "<string>",
      "project_title": "<string>",
      "order_id": "<string>",
      "order_name": "<string>",
      "agent_name": "<string>",
      "question": "<string>",
      "choices": [
        "<string>"
      ],
      "on_answer": "<string>",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "projects": [
    {
      "id": "<string>",
      "title": "<string>",
      "domain_id": "<string>",
      "state": "active",
      "actions": [
        {
          "id": "<string>",
          "title": "<string>",
          "status": "inbox",
          "project_id": "<string>",
          "assigned_actor_id": "<string>",
          "assigned_actor_kind": "user",
          "assigned_actor_name": "<string>",
          "assigned_agent_id": "<string>",
          "assigned_agent_name": "<string>",
          "delegate_label": "<string>",
          "due_at": "2023-11-07T05:31:56Z",
          "last_activity_note": "<string>",
          "last_activity_at": "2023-11-07T05:31:56Z",
          "is_working": true
        }
      ]
    }
  ],
  "standalone_actions": [
    {
      "id": "<string>",
      "title": "<string>",
      "status": "inbox",
      "project_id": "<string>",
      "assigned_actor_id": "<string>",
      "assigned_actor_kind": "user",
      "assigned_actor_name": "<string>",
      "assigned_agent_id": "<string>",
      "assigned_agent_name": "<string>",
      "delegate_label": "<string>",
      "due_at": "2023-11-07T05:31:56Z",
      "last_activity_note": "<string>",
      "last_activity_at": "2023-11-07T05:31:56Z",
      "is_working": true
    }
  ],
  "agents": [
    {
      "id": "<string>",
      "workspace_id": "<string>",
      "actor_id": "<string>",
      "name": "<string>",
      "capabilities": [
        "<string>"
      ],
      "transport_mode": "poll",
      "access_mode": "worker",
      "webhook_url": "<string>",
      "icon": "radar",
      "last_seen_at": "2023-11-07T05:31:56Z",
      "state": "pending",
      "presence": "working",
      "mcp_url": "<string>",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "orders": [
    {
      "id": "<string>",
      "assigned_actor_id": "<string>",
      "agent_id": "<string>",
      "agent_name": "<string>",
      "name": "<string>",
      "summary": "<string>",
      "state": "active",
      "domain_id": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.fortressproductivity.com/llms.txt

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

Authorizations

Authorization
string
header
required

Agent bearer token using the ft_... token format.

Response

Get command view

metrics
object
required
questions
object[]
required
projects
object[]
required
standalone_actions
object[]
required
agents
object[]
required
orders
object[]
required