GET api/RGB
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of RGBEnt| Name | Description | Type | Additional information |
|---|---|---|---|
| R | integer |
None. |
|
| G | integer |
None. |
|
| B | integer |
None. |
|
| RGB | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"R": 1,
"G": 2,
"B": 3,
"RGB": "sample string 4"
},
{
"R": 1,
"G": 2,
"B": 3,
"RGB": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfRGBEnt xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WxApi.Models">
<RGBEnt>
<B>3</B>
<G>2</G>
<R>1</R>
<RGB>sample string 4</RGB>
</RGBEnt>
<RGBEnt>
<B>3</B>
<G>2</G>
<R>1</R>
<RGB>sample string 4</RGB>
</RGBEnt>
</ArrayOfRGBEnt>