GET api/v100/AvailableHotspots?CustomerId={CustomerId}
Devuelve los hotspots disponibles para el identificador de cliente suministrado. El método devuelve un error si no existe ningún token suministrado o si éste no está habilitado para el cliente.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
CustomerId |
Identificador único del cliente. |
integer |
Required |
Response Information
Resource Description
Lista de Hotspots.
Collection of HotspotTypeName | Description | Type | Additional information |
---|---|---|---|
Id | integer | ||
Description | string | ||
Attributes | Dictionary of "Tipo" + Object [key] and "Tipo" + Object [value] |
Response Formats
application/json, text/json
Sample:
[ { "Id": 1, "Description": "sample string 2", "Attributes": null }, { "Id": 1, "Description": "sample string 2", "Attributes": null } ]
application/xml, text/xml
Sample:
<ArrayOfHotspotType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ibertic.Iradius.CredentialsGeneration"> <HotspotType> <Attributes i:nil="true" /> <Description>sample string 2</Description> <Id>1</Id> </HotspotType> <HotspotType> <Attributes i:nil="true" /> <Description>sample string 2</Description> <Id>1</Id> </HotspotType> </ArrayOfHotspotType>