Get Group Chat Participants


This request retrieves the participants of the specified group chat.

Resource

GET /chats/group/<OID>/participants

Where OID is the object ID of the group chat session.

Parameters

None

Payload

None

Context

Authorization

User

Errors

Example

Request
GET https://xelion.nl/api/v1/master/chats/group/2062931/participants
Response
{
    "data": [
        {
            "object": {
                "userProfile": {
                    "commonName": "wes",
                    "oid": "1651218",
                    "objectType": "UserProfile"
                },
                "person": {
                    "iconId": "2043923",
                    "commonName": "Wesley",
                    "oid": "1650975",
                    "objectType": "Person"
                },
                "admin": true
            }
        },
        {
            "object": {
                "userProfile": {
                    "commonName": "arno",
                    "oid": "1651120",
                    "objectType": "UserProfile"
                },
                "person": {
                    "commonName": "Arno",
                    "oid": "1650938",
                    "objectType": "Person"
                },
                "admin": false
            }
        }
    ],
    "meta": {
        "links": [
            {
                "rel": "refresh",
                "href": "https://xelion.nl/api/v1/master/chats/group/2043580/participants",
                "method": "GET"
            }
        ]
    }
}