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