Skip to main content
GET
/
v1
/
notes
List notes for an entity
curl --request GET \
  --url https://api.fortressproductivity.com/v1/notes \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "workspace_id": "<string>",
      "action_id": "<string>",
      "question_id": "<string>",
      "order_id": "<string>",
      "project_id": "<string>",
      "created_by_actor_id": "<string>",
      "kind": "heartbeat",
      "body": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "created_by_actor_kind": "user",
      "created_by_actor_name": "<string>",
      "created_by_agent_id": "<string>",
      "created_by_user_id": "<string>"
    }
  ],
  "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

action_id
string
Minimum string length: 1
question_id
string
Minimum string length: 1
order_id
string
Minimum string length: 1
project_id
string
Minimum string length: 1
kind
enum<string>
Available options:
heartbeat,
drop_reason,
reject_reason,
freeform
limit
integer
Required range: 1 <= x <= 200

Response

Note list

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