GET api/EnlacesVentas?token={token}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
Required |
Body Parameters
None.
Response Information
Resource Description
EnlacesVentas| Name | Description | Type | Additional information |
|---|---|---|---|
| listado_enlaces | Collection of ListadoEnlaces |
None. |
Response Formats
application/json, text/json
Sample:
{
"listado_enlaces": [
{
"enlace": "sample string 1",
"titulo": "sample string 2"
},
{
"enlace": "sample string 1",
"titulo": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<EnlacesVentas xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppVendedoresREST">
<listado_enlaces>
<ListadoEnlaces>
<enlace>sample string 1</enlace>
<titulo>sample string 2</titulo>
</ListadoEnlaces>
<ListadoEnlaces>
<enlace>sample string 1</enlace>
<titulo>sample string 2</titulo>
</ListadoEnlaces>
</listado_enlaces>
</EnlacesVentas>