GET
/
projects
Find projects by environment
curl --request GET \
  --url https://api.n-3.co.uk/projects \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "name": "<string>",
      "project_reference": "<string>",
      "description": "<string>",
      "project_status": "IN_PROGRESS"
    }
  ],
  "meta": {
    "total": 123,
    "lastPage": 123,
    "currentPage": 123,
    "perPage": 123,
    "prev": 123,
    "next": 123
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

env
integer
required

Response

200 - application/json

The response is of type object.