Get all Devices of Device Group

This endpoint retrieves all Devices of a specific Device Group.

Request

To retrieve all Devices of a specific Organization please make a GET request to the following URL:

HTTP MethodURL
GEThttps://industrial.api.ubidots.com/api/v2.0/device_groups/<device_group_key>/devices/

Path Parameters

ParameterTypeDescription
<device_group_key>StringThe id or label of the Device Group, label should use the prefix ~

Header

ParameterRequired?Description
X-Auth-TokenYesAuthentication Token of account
$ curl -X GET 'https://industrial.api.ubidots.com/api/v2.0/device_groups/<device_groups_key>/devices/' \
 -H 'X-Auth-Token: oaXBo6ODhIjPsusNRPUGIK4d72bc73' \
{
    "count": 1,
    "next": null,
    "previous": null,
    "results": [
        {
            "url": "https://industrial.api.ubidots.com/api/v2.0/devices/12345a791d847273ee3f06c1",
            "id": "12345a791d847273ee3f06c1",
            "label": "dev0",
            "name": "Dev0"
        }
    ]
}
{
    "code": 400001,
    "message": "Validation Error.",
    "detail": {
        ....
    }
}
{
    "code": 401001,
    "message": "Authentication credentials were not provided.",
    "detail": "Authentication credentials were not provided."
}

Response

Returns an object with an array results containing all devices pertaining to the specific Device Group.