GET
/
projects
/
appraisals
Get the appraisals involved in the project
curl --request GET \
  --url https://api.n-3.co.uk/projects/appraisals \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "parent_id": 123,
    "input_value": "<string>",
    "input_field": "<string>",
    "other_input_settings": [
      {
        "id": 123,
        "parent_id": 123,
        "input_value": "<string>",
        "input_field": "<string>",
        "other_input_settings": [
          {}
        ]
      }
    ],
    "project_cost_inputs": [
      {
        "id": 123,
        "budget": 123,
        "out_turn": 123,
        "project_id": 123
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

projectId
integer
required

Response

200 - application/json

The response is of type object[].