Points

Represents the points of a scoresheet score.

URI
/api/v10/scoresheets/ID/scores/ID/points

GET Get points

Retrieve the score points.

This API request returns points as a JSON encoded string or null, if no points are set. 0 points is returned as 0 as it is a perfectly valid number of points.

Syntax
GET /api/v10/scoresheets/123/scores/321/points
Host: apply.example.edu
Authorization: DREAM apikey="..."

Example request

Request
curl
curl \
  -X GET \
  -H "Authorization: DREAM apikey=\"YOUR-API-KEY\"" \
  "https://apply.example.edu/api/v10/scoresheets/123/scores/321/points"

Response headers

HeaderValueDescription
Content-Typeapplication/jsonThe media type of the resource
Content-Length1234The size of the response body in bytes

Response codes

Response codeDescription
200 OKThe points value was successfully returned
404 Not FoundThe scoresheet does not have this score

Example response

Response
"90.00"

PUT Set points

Set the points of a scoresheet score to the provided value.

This API request runs all validation checks and does not accept illegal point values that fall out of the accepted range (as defined in the scoresheet settings). If mapped values are set (for example, if 5 = Excellent), the numeric value must be sent.

Syntax
PUT /api/v10/scoresheets/123/scores/321/points
Host: apply.example.edu
Authorization: DREAM apikey="..."

Raw request body

The request body must contain a valid JSON string — points enclosed in double quotes.

You can set 0 points (which is perfectly valid) as 0 or 0.0 or 0.00. However, you cannot clear the score points using this request. Use the DELETE method for that.

Request body
"3.14"

Example request

Request
curl
curl \
  -X PUT \
  -H "Authorization: DREAM apikey=\"YOUR-API-KEY\"" \
  -d '"3.14"' \
  "https://apply.example.edu/api/v10/scoresheets/123/scores/321/points"

Response headers

HeaderValueDescription
Content-Typetext/plainThe media type of the resource
Content-Length0The size of the response body in bytes

Response codes

Response codeDescription
204 No ContentThe points were successfully saved
404 Not FoundThe scoresheet does not have this score
400 Bad RequestThe points value did not pass the validation tests or is not a JSON string with double quotes.

DELETE Delete points

Delete the points of a scoresheet score.

This API request resets the score points to “not scored”, which is distinct from a perfectly valid score of 0 points.

Syntax
DELETE /api/v10/scoresheets/123/scores/321/points
Host: apply.example.edu
Authorization: DREAM apikey="..."

Example request

Request
curl
curl \
  -X DELETE \
  -H "Authorization: DREAM apikey=\"YOUR-API-KEY\"" \
  "https://apply.example.edu/api/v10/scoresheets/123/scores/321/points"

Response headers

HeaderValueDescription
Content-Typetext/plainThe media type of the resource
Content-Length0The size of the response body in bytes

Response codes

Response codeDescription
204 No ContentThe points were successfully cleared
404 Not FoundThe scoresheet does not have this score