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
{
"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
}
}
GET /v1/groups/:group_id
Request
Request
curl / cURL
curl -L -X GET 'https://quranreflect.com/v1/groups/:group_id' \
-H 'Accept: application/json'
python / requests
curl -L -X GET 'https://quranreflect.com/v1/groups/:group_id' \
-H 'Accept: application/json'
go / native
curl -L -X GET 'https://quranreflect.com/v1/groups/:group_id' \
-H 'Accept: application/json'
nodejs / axios
curl -L -X GET 'https://quranreflect.com/v1/groups/:group_id' \
-H 'Accept: application/json'
ruby / Net::HTTP
curl -L -X GET 'https://quranreflect.com/v1/groups/:group_id' \
-H 'Accept: application/json'
csharp / RestSharp
curl -L -X GET 'https://quranreflect.com/v1/groups/:group_id' \
-H 'Accept: application/json'
php / cURL
curl -L -X GET 'https://quranreflect.com/v1/groups/:group_id' \
-H 'Accept: application/json'
java / OkHttp
curl -L -X GET 'https://quranreflect.com/v1/groups/:group_id' \
-H 'Accept: application/json'
powershell / RestMethod
curl -L -X GET 'https://quranreflect.com/v1/groups/:group_id' \
-H 'Accept: application/json'