GET api/LoserQuotes
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of LoserQuotes| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| quote | string |
String length: inclusive between 0 and 255 |
|
| orderby | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"quote": "sample string 2",
"orderby": 1
},
{
"id": 1,
"quote": "sample string 2",
"orderby": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfLoserQuotes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/exantasgameapi.Models">
<LoserQuotes>
<id>1</id>
<orderby>1</orderby>
<quote>sample string 2</quote>
</LoserQuotes>
<LoserQuotes>
<id>1</id>
<orderby>1</orderby>
<quote>sample string 2</quote>
</LoserQuotes>
</ArrayOfLoserQuotes>