GET api/articles/speedrating
Method that gets all speed ratings.
Request Information
URI Parameters
None.
Body Parameters
None.
Remarks
None.
Example
None.
Response Information
Resource Description
Collection of SpeedRatingResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Key | string |
None. |
|
| Code | integer |
None. |
|
| Description | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Key": "sample string 2",
"Code": 3,
"Description": "sample string 4"
},
{
"Id": 1,
"Key": "sample string 2",
"Code": 3,
"Description": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfSpeedRatingResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Compilator.DDAPI.DTO.Article">
<SpeedRatingResponse>
<Code>3</Code>
<Description>sample string 4</Description>
<Id>1</Id>
<Key>sample string 2</Key>
</SpeedRatingResponse>
<SpeedRatingResponse>
<Code>3</Code>
<Description>sample string 4</Description>
<Id>1</Id>
<Key>sample string 2</Key>
</SpeedRatingResponse>
</ArrayOfSpeedRatingResponse>