Get groups
GET/workspace/:ws_id/table/sys_groups
Get a list of groups in your Blink tenant
Request
Path Parameters
ws_id stringrequired
Workspace ID
Query Parameters
q string
For the RQL query syntax, visit our RQL query documentation in the RQL Format
tab
Responses
- 200
- 400
- 404
OK
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
limit integer
offset integer
results object[]
created_at integer
created_by string
description string
id string
managed boolean
name string
tenant_id string
updated_at integer
updated_by string
total integer
{
"limit": 0,
"offset": 0,
"results": [
{
"created_at": 0,
"created_by": "string",
"description": "string",
"id": "string",
"managed": true,
"name": "string",
"tenant_id": "string",
"updated_at": 0,
"updated_by": "string"
}
],
"total": 0
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
data
details string
identifier string
message string
status integer
user_error
{
"data": {},
"details": "string",
"identifier": "string",
"message": "string",
"status": 404,
"user_error": {}
}
Can not find record
- application/json
- Schema
- Example (from schema)
Schema
data
details string
identifier string
message string
status integer
user_error
{
"data": {},
"details": "string",
"identifier": "string",
"message": "string",
"status": 404,
"user_error": {}
}
Loading...