Group Show API
Get detail of a specific group/page
auth headers are optional for public group/page
Path Parameters
group_id integer required
group id
Query Parameters
client_auth_token string required
Client API token
Header Parameters
access-token string
user access token
client string
client access token
expiry string
timestamp of token expiry
Example: 1531315250
token-type string
access token type
Example: Bearer
uid string
user uid
Example: user@quranreflect.com
Responses
- 200
OK
Response Headers
application/json
Schema
Example (from schema)
room
page
Schema
success boolean
page object
id integer
name string
description string
active boolean
group string
public boolean
verified boolean
room_avatar_url nullable
{
"success": true,
"page": {
"id": 0,
"name": "string",
"description": "string",
"active": true,
"group": "string",
"public": true,
"verified": true
}
}
Group Show API (not member)
{
"success": true,
"page": {
"id": 271,
"name": "my api room",
"description": "test room",
"active": false,
"group": "testroom",
"public": true,
"verified": false,
"room_avatar_url": null
}
}
Group Show API
{
"success": true,
"page": {
"id": 271,
"name": "my api room",
"description": "test room",
"active": false,
"room": "testroom",
"subdomain": "testroom",
"public": true,
"verified": false,
"room_avatar_url": null
}
}
Loading...