GET api/SatelliteNotes
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of SatelliteNote| Name | Description | Type | Additional information |
|---|---|---|---|
| SatelliteNoteId | integer |
None. |
|
| SatelliteId | integer |
Required |
|
| Note | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"SatelliteNoteId": 1,
"SatelliteId": 2,
"Note": "sample string 3"
},
{
"SatelliteNoteId": 1,
"SatelliteId": 2,
"Note": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfSatelliteNote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Starship.WebAPI.Models">
<SatelliteNote>
<Note>sample string 3</Note>
<SatelliteId>2</SatelliteId>
<SatelliteNoteId>1</SatelliteNoteId>
</SatelliteNote>
<SatelliteNote>
<Note>sample string 3</Note>
<SatelliteId>2</SatelliteId>
<SatelliteNoteId>1</SatelliteNoteId>
</SatelliteNote>
</ArrayOfSatelliteNote>