🔀🧑‍💻 administrators

Users administrating the group

The administrators relationship returns all users administrating a given group. This relationship is only visible for the groups members.

It can be fetched using the relationships API endpoint and it returns a list of User objects.

{
  "data": [
    <USER_OBJECT>,
    ...
  ],
  "links": {
    "next": "<string>",
    "self": "<string>"
  },
  "meta": {
    "count": <int>,
    "cursor": "<string>"
  }
}
{
  "data": [
    {
      "attributes": {
        "first_name": "Salem",
        "last_name": "Spellman",
        "profile_phrase": "Meow",
        "reputation": 1,
        "status": "active",
        "user_since": 1557214525
      },
      "id": "salem",
      "links": {
        "self": "https://www.virustotal.com/api/v3/users/salem"
      },
      "type": "user"
    }
  ],
  "links": {
    "self": "https://www.virustotal.com/api/v3/groups/spellmans/administrators?limit=10"
  },
  "meta": {
    "count": 1
  }
}