Skip to main content
GET
/
api
/
v1
/
proposals
/
{id}
/
changes
Get proposal changes
curl --request GET \
  --url http://localhost:3000/api/v1/proposals/{id}/changes \
  --cookie nut-session=
{
  "success": true,
  "data": {
    "changes": [
      {
        "path": "<string>",
        "type": "create",
        "content": "<string>",
        "oldPath": "<string>"
      }
    ]
  }
}

Authorizations

nut-session
string
cookie
required

Session cookie authentication

Path Parameters

id
string
required

Proposal ID

Response

List of changes

success
boolean
required
data
object