List bidding deadlines.

Fields

id (integer)

Primary key.

bidding (integer)

Foreign key to bidding.

deadline (date)

Datetime of deadline.

time (string)

Time of deadline.

comment (string)

Generic comment.

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:

  • deadline: gt, gte, lt, lte, date
GET /v1/research/bidding:deadline/?format=api&offset=20&ordering=-deadline
HTTP 200 OK
  Allow: GET, HEAD, OPTIONS
  Content-Type: application/json
  Vary: Accept
  
  {
    "count": 21,
    "next": null,
    "previous": "https://api-test.medunigraz.at/v1/research/bidding:deadline/?format=api&limit=20&ordering=-deadline",
    "results": [
        {
            "id": 2417,
            "bidding": 894,
            "deadline": "2025-04-28T02:00:00+02:00",
            "time": null,
            "comment": null
        }
    ]
}