POST api/Starships
Request Information
URI Parameters
None.
Body Parameters
Starship| Name | Description | Type | Additional information |
|---|---|---|---|
| StarshipId | integer |
None. |
|
| URL | string |
Required |
|
| Name | string |
Required String length: inclusive between 0 and 100 |
Request Formats
application/json, text/json
Sample:
{
"StarshipId": 1,
"URL": "sample string 2",
"Name": "sample string 3"
}
application/xml, text/xml
Sample:
<Starship xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Starship.WebAPI.Models"> <Name>sample string 3</Name> <StarshipId>1</StarshipId> <URL>sample string 2</URL> </Starship>
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.