Skip to main content
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
id
integer
required
input_value
string
required
input_field
string
required
other_input_settings
object[]
required
project_cost_inputs
object[]
required
parent_id
integer | null