GET api/Scoresheets?record_id={record_id}
Lists all scoresheets for the given id of a score record.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| record_id |
A GUID (Globally Unique Identifier) in the format xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ScoreSheet| Name | Description | Type | Additional information |
|---|---|---|---|
| member_id |
Gets the identifier of the member. |
globally unique identifier |
None. |
| meta_id |
Gets the identifier of the scoresheet. |
globally unique identifier |
None. |
| record_id |
Gets the identifier of the score record. |
globally unique identifier |
None. |
| url |
Gets the URL of the scoresheet. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"member_id": "376f2530-0fa1-4f41-be48-9e14d098a273",
"meta_id": "5340d2fc-4b56-4b02-a9b1-c5be3c9cf788",
"record_id": "bafb2995-b5da-4ae9-96b7-59b75687f783",
"url": "sample string 4"
},
{
"member_id": "376f2530-0fa1-4f41-be48-9e14d098a273",
"meta_id": "5340d2fc-4b56-4b02-a9b1-c5be3c9cf788",
"record_id": "bafb2995-b5da-4ae9-96b7-59b75687f783",
"url": "sample string 4"
}
]
multipart/form-data
Sample:
[{"member_id":"376f2530-0fa1-4f41-be48-9e14d098a273","meta_id":"5340d2fc-4b56-4b02-a9b1-c5be3c9cf788","record_id":"bafb2995-b5da-4ae9-96b7-59b75687f783","url":"sample string 4"},{"member_id":"376f2530-0fa1-4f41-be48-9e14d098a273","meta_id":"5340d2fc-4b56-4b02-a9b1-c5be3c9cf788","record_id":"bafb2995-b5da-4ae9-96b7-59b75687f783","url":"sample string 4"}]
application/xml, text/xml
Sample:
<ArrayOfScoreSheet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Archery_Records_API">
<ScoreSheet>
<member_id>376f2530-0fa1-4f41-be48-9e14d098a273</member_id>
<meta_id>5340d2fc-4b56-4b02-a9b1-c5be3c9cf788</meta_id>
<record_id>bafb2995-b5da-4ae9-96b7-59b75687f783</record_id>
<url>sample string 4</url>
</ScoreSheet>
<ScoreSheet>
<member_id>376f2530-0fa1-4f41-be48-9e14d098a273</member_id>
<meta_id>5340d2fc-4b56-4b02-a9b1-c5be3c9cf788</meta_id>
<record_id>bafb2995-b5da-4ae9-96b7-59b75687f783</record_id>
<url>sample string 4</url>
</ScoreSheet>
</ArrayOfScoreSheet>