cURL
curl --request GET \ --url http://localhost:3001/api/v1/proposals/{id} \ --cookie nut-session=
{ "success": true, "data": { "proposal": { "id": "<string>", "title": "<string>", "status": "draft", "intent": "<string>", "description": "<string>", "priority": "low", "tags": [ "<string>" ], "author": { "type": "user", "id": "<string>", "name": "<string>" }, "changes": [ { "path": "<string>", "type": "create", "content": "<string>", "oldPath": "<string>" } ], "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z" } } }
Retrieve a specific proposal by ID
Session cookie authentication
Proposal ID
Proposal details
Show child attributes