Skip to main content
POST
/
v1
/
proposals
/
{id}
/
respond
Respond to a proposal
curl --request POST \
  --url https://api.fortressproductivity.com/v1/proposals/{id}/respond \
  --header 'Content-Type: application/json' \
  --cookie better-auth.session_token= \
  --data '
{
  "response_verb": "permit"
}
'
{
  "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

better-auth.session_token
string
cookie
required

Human web-session cookie issued by Better Auth.

Path Parameters

id
string
required
Minimum string length: 1
Example:

"act_123"

Body

application/json
response_verb
enum<string>
required
Available options:
permit,
permit_with_edit,
reject,
take,
counter
response_comment
string
Minimum string length: 1
response_payload
any
client_request_id
string
Required string length: 1 - 200

Response

Responded proposal

proposal
object
required