GET api/SPLCMColoresUI?token={token}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SPLCMColorElemento| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | string |
None. |
|
| Descripcion | string |
None. |
|
| CodigoColor | string |
None. |
|
| R | decimal number |
None. |
|
| G | decimal number |
None. |
|
| B | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "sample string 1",
"Descripcion": "sample string 2",
"CodigoColor": "sample string 3",
"R": 4.1,
"G": 5.1,
"B": 6.1
},
{
"Id": "sample string 1",
"Descripcion": "sample string 2",
"CodigoColor": "sample string 3",
"R": 4.1,
"G": 5.1,
"B": 6.1
}
]
application/xml, text/xml
Sample:
<ArrayOfSPLCMColorElemento xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SPLCM_WebApi.Models">
<SPLCMColorElemento>
<B>6.1</B>
<CodigoColor>sample string 3</CodigoColor>
<Descripcion>sample string 2</Descripcion>
<G>5.1</G>
<Id>sample string 1</Id>
<R>4.1</R>
</SPLCMColorElemento>
<SPLCMColorElemento>
<B>6.1</B>
<CodigoColor>sample string 3</CodigoColor>
<Descripcion>sample string 2</Descripcion>
<G>5.1</G>
<Id>sample string 1</Id>
<R>4.1</R>
</SPLCMColorElemento>
</ArrayOfSPLCMColorElemento>