...
SubmissionStatus
Object to track the status and score of a specific Submission. This object is generated at the time of submission, and can be modified by Competition administrators.
...
URL | HTTP Type | Description |
---|---|---|
/competition | POST | Create a new Synapse Competition |
/competition/{competitionId} | GET | Fetch a Synapse Competition |
/competition/{competitionId} | PUT | Update a Synapse Competition |
/competition/{competitionId} | DELETE | Delete a Synapse Competition |
Participant
URL | HTTP Type | Description |
---|---|---|
/competition/{competitionId}/participant | POST | Join as a new Participant in the Competition specified by competitionId |
...
URL | HTTP Type | Description | |
---|---|---|---|
/competition/submission | POST | Create a new Synapse Submission (and a corresponding SubmissionStatus object) | |
/competition/submission/{submissionId} | GET | Fetch a Synapse a Submission | |
/competition/submission/{submissionId}/status | GET | Get the status of a Submission | |
/competition/submission/{submissionId}/status | PUT | Update the status of a | SynapseSubmission |
Example Workflow
The following is a proposed workflow for interacting with the Competition Services. Please note that some components are still under development.
...