BridgeHomeService
A list of all methods in the BridgeHomeService
service. Click on the method name to view detailed information about that method.
Methods | Description |
---|---|
GetBridgeHomesAsync | List all available bridge homes. |
GetBridgeHomeAsync | Get details of a single bridge home from its given {bridgeHomeId} . |
GetBridgeHomesAsync
List all available bridge homes.
- HTTP Method:
GET
- Endpoint:
/clip/v2/resource/bridge_home
Return Type
GetBridgeHomesOkResponse
Example Usage Code Snippet
using OpenHue;
var client = new OpenHueClient();
var response = await client.BridgeHome.GetBridgeHomesAsync();
Console.WriteLine(response);
GetBridgeHomeAsync
Get details of a single bridge home from its given {bridgeHomeId}
.
- HTTP Method:
GET
- Endpoint:
/clip/v2/resource/bridge_home/{bridgeHomeId}
Parameters
Name | Type | Required | Description |
---|---|---|---|
bridgeHomeId | string | ✅ | ID of the bridge home. |
Return Type
GetBridgeHomeOkResponse
Example Usage Code Snippet
using OpenHue;
var client = new OpenHueClient();
var response = await client.BridgeHome.GetBridgeHomeAsync("bridgeHomeId");
Console.WriteLine(response);
Build Your Own SDKs with liblab
Build developer friendly SDKs in minutes from your APIs