Skip to main content
GET
/
v1
/
agents
/
{id}
/
queue
Get an agent queue
curl --request GET \
  --url https://api.fortressproductivity.com/v1/agents/{id}/queue \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "title": "<string>",
      "status": "inbox",
      "project_id": "<string>",
      "project_title": "<string>",
      "due_at": "2023-11-07T05:31:56Z",
      "defer_until": "2023-11-07T05:31:56Z",
      "assigned_actor_id": "<string>",
      "assigned_actor_kind": "user",
      "assigned_actor_name": "<string>",
      "assigned_agent_id": "<string>",
      "last_activity_at": "2023-11-07T05:31:56Z",
      "details_preview": "<string>",
      "requirements": [
        "<string>"
      ],
      "is_working": true
    }
  ],
  "total": 1,
  "page": {
    "offset": 1,
    "limit": 123
  },
  "sort": "<string>",
  "filters": {},
  "hidden_count": 1
}

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.

Path Parameters

id
string
required
Minimum string length: 1
Example:

"act_123"

Query Parameters

include_claimable
enum<string>
Available options:
true,
false

Response

Agent queue

items
object[]
required
total
integer
Required range: x >= 0
page
object
sort
string
filters
object
hidden_count
integer
Required range: x >= 0