Get Things Group Information

This guide will show you how you can receive information about a Thing Group via an API command.

Get Things Group Information

GET https://console.monogoto.io/thingsgroup/{THING_GROUP_ID}

Path Parameters

Name
Type
Description

THING_GROUP_ID*

String

Identifier of Things Group. Use * to get information about all groups

Headers

Name
Type
Description

YOUR_TOKEN*

String

Your authentication token

CUSTOMER_ID*

String

Customer API key (equal to customer ID)

{
    // Response
}

Example using cURL:

curl -X GET \
    --url "https://console.monogoto.io/thingsgroup/{THING_GROUP_ID}" \
    -H "accept: application/json" \
    -H "Authorization: Bearer {TOKEN_HERE}" \
    -H "{CUSTOMER_ID}"

Add your Token, THING_GROUP_ID and CUSTOMER_ID in the GET request to successfully execute the command.

THING_GROUP_ID - to see information about all of your Thing Groups, enter * instead of a specific ThingGroupID

Example of request to show information about all of our Thing Groups:

Expected result:

Example of request to show information only about a single Thing Group:

Expected result:

Last updated

Was this helpful?