Display Groups

POST /Account/Read/Group

This process returns the display group availble for this customer number. Secret Hmac Required. Cache Time 1 Hour.

application/json

Body

  • ShowAll number

    If set, all display groups that this customer number can access are returned. Otherwise the primary display group for this customer is returned.

Responses

  • 200 application/json

    Display Group Information successfully returned

POST /Account/Read/Group
curl \
 --request POST 'https://wapi.strandvision.com/v1.0/Account/Read/Group' \
 --header "X-ApiKey: $API_KEY" \
 --header "Authorization: X-apidate $ACCESS_TOKEN" \
 --header "Authorization: X-apihmac $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"ShowAll":1}'
Request examples
{
  "ShowAll": 1
}
Response examples (200)
[
  {
    "CopyId": "None (0)",
    "Parent": 10028,
    "GroupId": 9,
    "LocCount": 0,
    "GroupName": "All of StrandVision Digital Signage",
    "Hierarchy": [
      "All of StrandVision Digital Signage (9)"
    ],
    "PageCount": 8,
    "UserCount": 2
  },
  {
    "CopyId": "None (0)",
    "Parent": 10028,
    "GroupId": 14030,
    "LocCount": 0,
    "GroupName": "U.S.A",
    "Hierarchy": [
      "All of StrandVision Digital Signage (9)",
      "U.S.A (14030)"
    ],
    "PageCount": 0,
    "UserCount": 2
  },
  {
    "CopyId": "None (0)",
    "Parent": 10028,
    "GroupId": 14031,
    "LocCount": 0,
    "GroupName": "East Coast",
    "Hierarchy": [
      "All of StrandVision Digital Signage (9)",
      "U.S.A (14030)",
      "East Coast (14031)"
    ],
    "PageCount": 0,
    "UserCount": 0
  },
  {
    "CopyId": "None (0)",
    "Parent": 10028,
    "GroupId": 10,
    "LocCount": 1,
    "GroupName": "Altoona, WI",
    "Hierarchy": [
      "All of StrandVision Digital Signage (9)",
      "U.S.A (14030)",
      "East Coast (14031)",
      "Altoona, WI (10)"
    ],
    "PageCount": 36,
    "UserCount": 1
  },
  {
    "CopyId": "None (0)",
    "Parent": 10028,
    "GroupId": 14032,
    "LocCount": 0,
    "GroupName": "West Coast",
    "Hierarchy": [
      "All of StrandVision Digital Signage (9)",
      "U.S.A (14030)",
      "West Coast (14032)"
    ],
    "PageCount": 0,
    "UserCount": 0
  }
]