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