List project status.

Fields

id (integer)

Primary key.

name (string)

Name of project status.

None

GET /v1/research/project:status/?format=api
HTTP 200 OK
  Allow: GET, HEAD, OPTIONS
  Content-Type: application/json
  Vary: Accept
  
  {
    "count": 6,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 0,
            "name": "In Ausarbeitung"
        },
        {
            "id": 1,
            "name": "Eingereicht"
        },
        {
            "id": 3,
            "name": "Abgelehnt"
        },
        {
            "id": 4,
            "name": "Abbruch vor Beginn"
        },
        {
            "id": 5,
            "name": "Abbruch nach Beginn"
        },
        {
            "id": 2,
            "name": "Bewilligt"
        }
    ]
}