GET api/Notes?CompCode={CompCode}&ScoutGroup={ScoutGroup}&Team={Team}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
CompCode

string

Required

ScoutGroup

string

Required

Team

integer

Required

Body Parameters

None.

Response Information

Resource Description

DTONotes
NameDescriptionTypeAdditional information
CompCode

string

None.

ScoutGroup

string

None.

Team

integer

None.

Match

integer

None.

NoteCode

string

None.

NotesValue

string

None.

Response Formats

application/json, text/json

Sample:
{
  "CompCode": "sample string 1",
  "ScoutGroup": "sample string 2",
  "Team": 3,
  "Match": 4,
  "NoteCode": "sample string 5",
  "NotesValue": "sample string 6"
}

application/xml, text/xml

Sample:
<DTONotes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FiresUniAPI.Models">
  <CompCode>sample string 1</CompCode>
  <Match>4</Match>
  <NoteCode>sample string 5</NoteCode>
  <NotesValue>sample string 6</NotesValue>
  <ScoutGroup>sample string 2</ScoutGroup>
  <Team>3</Team>
</DTONotes>