GET CoberturaSuscriptor?key={key}&susId={susId}
Obtiene el id del tema de tu cobertura disponible.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| key |
KEY de seguridad para cada consulta a tu API |
string |
Required |
| susId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of API_COBERTURA| Name | Description | Type | Additional information |
|---|---|---|---|
| TemaID | integer |
None. |
|
| TemaNombre | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"TemaID": 1,
"TemaNombre": "sample string 2"
},
{
"TemaID": 1,
"TemaNombre": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfAPI_COBERTURA xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MS.API.PUBLIC.Models">
<API_COBERTURA>
<TemaID>1</TemaID>
<TemaNombre>sample string 2</TemaNombre>
</API_COBERTURA>
<API_COBERTURA>
<TemaID>1</TemaID>
<TemaNombre>sample string 2</TemaNombre>
</API_COBERTURA>
</ArrayOfAPI_COBERTURA>