GET api/Scoresheets?record_id={record_id}

Lists all scoresheets for the given id of a score record.

Request Information

URI Parameters

NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional 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": "e62eea94-2db1-4516-918c-e2690fa72812",
    "meta_id": "f07fc8fd-d02b-4407-a881-0dd81a325869",
    "record_id": "344f801a-7279-4788-a59d-0e9d700de36e",
    "url": "sample string 4"
  },
  {
    "member_id": "e62eea94-2db1-4516-918c-e2690fa72812",
    "meta_id": "f07fc8fd-d02b-4407-a881-0dd81a325869",
    "record_id": "344f801a-7279-4788-a59d-0e9d700de36e",
    "url": "sample string 4"
  }
]

multipart/form-data

Sample:
[{"member_id":"e62eea94-2db1-4516-918c-e2690fa72812","meta_id":"f07fc8fd-d02b-4407-a881-0dd81a325869","record_id":"344f801a-7279-4788-a59d-0e9d700de36e","url":"sample string 4"},{"member_id":"e62eea94-2db1-4516-918c-e2690fa72812","meta_id":"f07fc8fd-d02b-4407-a881-0dd81a325869","record_id":"344f801a-7279-4788-a59d-0e9d700de36e","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/Golden_Records_API">
  <ScoreSheet>
    <member_id>e62eea94-2db1-4516-918c-e2690fa72812</member_id>
    <meta_id>f07fc8fd-d02b-4407-a881-0dd81a325869</meta_id>
    <record_id>344f801a-7279-4788-a59d-0e9d700de36e</record_id>
    <url>sample string 4</url>
  </ScoreSheet>
  <ScoreSheet>
    <member_id>e62eea94-2db1-4516-918c-e2690fa72812</member_id>
    <meta_id>f07fc8fd-d02b-4407-a881-0dd81a325869</meta_id>
    <record_id>344f801a-7279-4788-a59d-0e9d700de36e</record_id>
    <url>sample string 4</url>
  </ScoreSheet>
</ArrayOfScoreSheet>