Show Access Groups

GET /Api/Read/Groups

This process returns the groups that your acl has access to. Note that API Groups are always manually created by a StrandVision system administrator and they are assigned in the StrandVision web site on the Signage Pages, API page. Secret Hmac Required. Cache Time 1 Hour. Reset if key edited.

Responses

  • API Keys successfully returned

    Hide response attributes Show response attributes array[object]
    • Id number

      database id for this ACL Group (useful for reviewing logs)

    • Name string

      The descriptive name of the group

    • 0 if not public, 10 for StrandVision Configurable

    • Created string

      HTTP-formatted GMT/UTC date/time for when this key was created

GET /Api/Read/Groups
curl \
 -X GET https://Api.StrandVision.com/v1.0/Api/Read/Groups \
 -H "Authorization: X-apikey $ACCESS_TOKEN" \
 -H "Authorization: X-apidate $ACCESS_TOKEN" \
 -H "Authorization: X-apihmac $ACCESS_TOKEN"
Response examples (200)
[
  {
    "Id": 101,
    "Name": "Read/Write People",
    "Is_Public": 10,
    "Created": "2023-04-24 22:24:04 UTC"
  },
  {
    "Id": 102,
    "Name": "Read User Database",
    "Is_Public": 10,
    "Created": "2023-04-24 22:24:04 UTC"
  },
  {
    "Id": 105,
    "Name": "Read/Write Signage Pages",
    "Is_Public": 10,
    "Created": "2023-04-24 22:24:04 UTC"
  }
]
Response examples (200)
[
  {
    "Id": 1,
    "Name": "Read ACL",
    "Is_Public": 0,
    "Created": "2023-04-24 22:24:04 UTC"
  }
]