Skip to main content
GET
/
api
/
{organization_id}
/
usage-group-sets
List usage group sets
curl --request GET \
  --url https://api.select.dev/api/{organization_id}/usage-group-sets \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "<string>",
    "order": 123,
    "snowflake_account_uuid": "<string>",
    "snowflake_organization_name": "<string>",
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

organization_id
string
required

Response

Successful Response

name
string
required

The name of the usage group set. Should be unique within the organization and cannot be empty.

order
integer
required

The display order of the usage group set. Must be a non-negative integer. Lower values appear first.

id
string<uuid>
required

The unique identifier of the usage group set.

snowflake_account_uuid
string | null

The UUID of the Snowflake account this usage group set is scoped to. Must be exactly one of snowflake_account_uuid or snowflake_organization_name.

snowflake_organization_name
string | null

The name of the Snowflake organization this usage group set is scoped to. Must be exactly one of snowflake_account_uuid or snowflake_organization_name.