Skip to main content
GET
/
v1
/
questions
List questions
curl --request GET \
  --url https://api.fortressproductivity.com/v1/questions \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "workspace_id": "<string>",
      "created_by_actor_id": "<string>",
      "assigned_actor_id": "<string>",
      "updated_by_actor_id": "<string>",
      "agent_id": "<string>",
      "action_id": "<string>",
      "project_id": "<string>",
      "order_id": "<string>",
      "question": "<string>",
      "choices": [
        "<string>"
      ],
      "on_answer": "<string>",
      "response": "<string>",
      "responded_at": "2023-11-07T05:31:56Z",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "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
project_id
string
Minimum string length: 1
agent_id
string
Minimum string length: 1
order_id
string
Minimum string length: 1
open
enum<string>
Available options:
true,
false

Response

Question list

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