Accessible via /api/scorepad.
Each score pad has the following properties. Complete details in ScorePadProperties.
The unique id for this score pad. It will never change.
The style of score pad you want.
scorepad
A date when the score pad was created.
A date when the score pad was last updated.
The name the score pad is known by.
A Game id. The unique id of a game that this score pad belongs to.
An integer between 1 and 99.
Defaults to 1.
Allows for multiple copies of a score pad to be included in the game.
A File id.
Sets the image that will be printed on the score pad.
The ID is from a File.
If a image_id is specified,
then an extra property called image will be added which will briefly describe the image.
A boolean indicating whether the image has been verified by the user to be correct.
Must be one of 40,
60,
80,
or 100.
The number of pages that will be included in this score pad.
The methods used to fetch and manipulate score pades.
POST /scorepad
Required. The unique session id provided by a Session method.
Required.
Required.
Optional.
Optional.
Optional.
Optional.
Returns:
{
"id" : "xxx",
"name" : "Box",
...
}
PUT /scorepad/xxx
See Create for details.
DELETE /scorepad/xxx
Required. The unique session id provided by a Session method.
Returns:
{
"success" : 1
}
GET /scorepad/xxx
Optional. The unique session id provided by a Session method.
Optional. See "Related Objects" in Intro and Related Objects above for details.
Returns:
{
"id" : "xxx",
"name" : "Box",
...
}