Skip to main content
GET
/
v1
/
orders
List orders
curl --request GET \
  --url https://api.fortressproductivity.com/v1/orders \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "workspace_id": "<string>",
      "assigned_actor_id": "<string>",
      "created_by_actor_id": "<string>",
      "updated_by_actor_id": "<string>",
      "agent_id": "<string>",
      "document_id": "<string>",
      "domain_id": "<string>",
      "name": "<string>",
      "summary": "<string>",
      "state": "active",
      "position": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "latest_checkin": {
        "id": "<string>",
        "workspace_id": "<string>",
        "order_id": "<string>",
        "created_by_actor_id": "<string>",
        "agent_id": "<string>",
        "kind": "heartbeat",
        "summary": "<string>",
        "created_at": "2023-11-07T05:31:56Z"
      },
      "last_seen_at": "2023-11-07T05:31:56Z",
      "open_action_count": 1,
      "open_question_count": 1
    }
  ],
  "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.

Query Parameters

agent_id
string
Minimum string length: 1
state
enum<string>
Available options:
active,
paused

Response

Order list

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