{{getMsg('Help_YouAreHere')}}:
/
{{page.title}}
{{page.title}}
{{$root.getMsg("downLoadHelpAsPdf")}}
{{helpModel.downloadHelpPdfDataStatus}}
Members Status
Returns a list with the channel members' status information
GET /teams/<teamID>/channels/<channelID>/members
Returns the list with the channels members status information.
[ { "id": "<GUID of the current user>", "displayName": "<the user's display name>", "customStatus": "<a custom status text>", "onlineStatus": "<the current online status>" "isIdle": "<the current idle status>" } ... ]
RESPONSE Field | Value Type | Description |
---|---|---|
id | String | The GUID of the channel member |
displayName | String | The display name of the channel member, visible in CoWork |
customStatus | String | A custom text displayed to users in CoWork below the display name. |
onlineStatus | String | The online status of the channel member. Available values: online , away , dnd , invisible , offline |
isIdle | Boolean | If true, indicates that all clients of the user are currently idle |
Example Request
# Request # Use user:password for authorization GET /api/cowork/teams/3n1ytbwme7ngfyn9g9guwwurt/channels/epmlsh7trr535mrs9z7xcfn1w/members HTTP/1.1 Accept: */* Authorization: Bearer VGhpcyBpcyBqdXN0IGEgZGVtbyBhY2Nlc3MgdG9rZW4u # Response HTTP/1.1 200 OK Content-Type: application/json [ { "id": "000000011733c660ad1d4476d", "displayName": "Jane Doe", "customStatus": "What a nice day", "onlineStatus": "away", "isIdle": true }, { "id": "000000022844d771bed2d5587e", "displayName": "Hansi Hartmann", "customStatus": "In the glow of the night", "onlineStatus": "online", "isIdle": false } ]