no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


Last revision
api:api_scoresheets_id [2019/03/05 14:48] – created Anton Smirnov
Line 1: Line 1:
 +====== /api/scoresheets/ID ======
  
 +===== HEAD, GET =====
 +
 +Return information about a scoresheet, identified by its ID.
 +
 +==== Syntax ====
 +
 +  GET /api/scoresheets/123
 +  Host: apply.example.edu
 +  Authorization: DREAM apikey="..."
 +  
 +==== Response headers ====
 +
 +  Content-Type: application/json
 +  Content-Length: 1234
 +  
 +==== Response example ====
 +
 +<code javascript>
 +{
 +    "created": "2018-01-03T17:20:00+00:00",
 +    "scored": null,
 +    "confirmed": null,
 +    "name": "Skype interview",
 +    "type": "Number",
 +    "range_min": "0.00",
 +    "range_max": "100.00",
 +    "scale": 2,
 +    "instructions": "Please write the points for the Skype interview from 0..100 according to the evaluation rules."
 +}
 +</code>