Skip to main content
POST
/
v1
/
proposals
Create a proposal
curl --request POST \
  --url https://api.fortressproductivity.com/v1/proposals \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>"
}
'
{
  "proposal": {
    "id": "<string>",
    "workspace_id": "<string>",
    "kind": "proposal",
    "agent_id": "<string>",
    "created_by_actor_id": "<string>",
    "assigned_actor_id": "<string>",
    "updated_by_actor_id": "<string>",
    "status": "open",
    "response_comment": "<string>",
    "responded_at": "2023-11-07T05:31:56Z",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "action_id": "<string>",
    "project_id": "<string>",
    "order_id": "<string>",
    "title": "<string>",
    "description": "<string>",
    "fortress_action_kind": "create_action",
    "external_system": "<string>",
    "external_resource": "<string>",
    "external_source_key": "<string>",
    "external_url": "<string>",
    "external_intent_kind": "<string>",
    "external_intent_body": "<string>",
    "response_verb": "permit",
    "consumed_at": "2023-11-07T05:31:56Z",
    "resolved_at": "2023-11-07T05:31:56Z",
    "resolved_by_actor_id": "<string>",
    "resolved_action_id": "<string>",
    "resolved_project_id": "<string>",
    "resolution_summary": "<string>",
    "created_by_actor_kind": "user",
    "created_by_actor_name": "<string>",
    "created_by_agent_id": "<string>",
    "created_by_user_id": "<string>",
    "fortress_payload": "<unknown>",
    "external_payload": "<unknown>",
    "response_payload": "<unknown>"
  }
}

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.

Body

application/json
title
string
required
Minimum string length: 1
description
string | null
fortress_action_kind
enum<string>
default:none
Available options:
create_action,
create_project,
duplicate_project,
none
fortress_payload
any
external_system
string | null
Minimum string length: 1
external_resource
string | null
Minimum string length: 1
external_source_key
string | null
Minimum string length: 1
external_url
string<uri> | null
external_intent_kind
string | null
Minimum string length: 1
external_intent_body
string | null
Minimum string length: 1
external_payload
any
action_id
string
Minimum string length: 1
project_id
string
Minimum string length: 1
order_id
string
Minimum string length: 1

Response

Created proposal

proposal
object
required