List bidding endowments.

Fields

id (integer)

Primary key.

bidding (integer)

Foreign key to bidding.

information (string)

Generic textual information.

amount (number)

Monetary amount of endowment.

currency (string)

Currency used to define amount.

Filters

To filter for exact value matches:

?<fieldname>=<value>

Possible exact filters:

  • bidding

For advanced filtering use lookups:

?<fieldname>__<lookup>=<value>

All fields with advanced lookups can also be used for exact value matches as described above.

Possible advanced lookups:

  • amount: gt, gte, lt, lte
GET /v1/research/bidding:endowment/?format=api&offset=20
HTTP 200 OK
  Allow: GET, HEAD, OPTIONS
  Content-Type: application/json
  Vary: Accept
  
  {
    "count": 23,
    "next": null,
    "previous": "https://api-test.medunigraz.at/v1/research/bidding:endowment/?format=api&limit=20",
    "results": [
        {
            "id": 1059,
            "bidding": 927,
            "information": "Preisgeld in der Höhe von",
            "amount": "4000.00",
            "currency": "EUR"
        },
        {
            "id": 1100,
            "bidding": 30,
            "information": "Personalkostensatz Doktorand*in pro Jahr",
            "amount": "47520.00",
            "currency": "EUR"
        },
        {
            "id": 1128,
            "bidding": 999,
            "information": "max.",
            "amount": "20000.00",
            "currency": "EUR"
        }
    ]
}