Note: Only manual scoreboards will show through the API. “Live” scoreboard data is unavailable due to TOS from our data provider. |
As a workflow, poll any event calls and you’ll see if there’s a scoreboard attached.
Next, make this call with an index=0, and it’ll provide the manual scoreboard data.
…………………………………………………………………………………………………………………..
Get Scoreboard
Get a specific Scoreboard if it is available.
GET URL: http:/{endpoint}/scoreboard/manual/event/{id}/index/{scoreboardindex} |
---|
API Call: http://endpoint/scoreboard/manual/event/{id}/index/{scoreboardindex}?Auth={Auth}&Token={Token}
Path Parameters:
NAME | REQUIRED | TYPE | DESCRIPTION |
Event Id | true | integer | The ID of the event whose information is being retrieved or modified. |
Scoreboard Index | true | integer | Index of Scoreboard for the specific event. Default to 0 |
Token | – | string | The token is a dedicated authorization key provided to the client to consume the API. |
Auth | – | string | The authentication key ensures the user of the API has been authenticated to use the service. The authentication key can be obtained by making a call to /user with the user’s credentials. |
…………………………………………………………………………………………………………………..
Save Scoreboard
Save scoreboard JSON data.
POST URL: http:/{endpoint}/scoreboard/manual/event/{id}/index/{scoreboardindex} |
---|
Path Parameters:
NAME | REQUIRED | TYPE | DESCRIPTION |
Event Id | true | integer | The ID of the event whose information is being retrieved or modified. |
Scoreboard Index | true | integer | Index of Scoreboard for the specific event. Default to 0 |
JSON Data | true | string | The scoreboard JSON to save |
Token | – | string | The token is a dedicated authorization key provided to the client to consume the API. |
Auth | – | string | The authentication key ensures the user of the API has been authenticated to use the service. The authentication key can be obtained by making a call to /user with the user’s credentials. |
…………………………………………………………………………………………………………………..
Delete Scoreboard
Delete a scoreboard from the event.
POST URL: http:/{endpoint}/scoreboard/manual/event/{id}/index/{scoreboardindex}/remove |
---|
Path Parameters:
NAME | REQUIRED | TYPE | DESCRIPTION |
Event Id | true | integer | The ID of the event whose information is being retrieved or modified. |
Scoreboard Index | true | integer | Index of Scoreboard for the specific event. Default to 0 |
Token | – | string | The token is a dedicated authorization key provided to the client to consume the API. |
Auth | – | string | The authentication key ensures the user of the API has been authenticated to use the service. The authentication key can be obtained by making a call to /user with the user’s credentials. |
…………………………………………………………………………………………………………………..
Advertisements