Returns a list of group user belongs to
GET/users/:username/groups
Returns a list of group user belongs to
Request
Path Parameters
username stringrequired
Username
Query Parameters
limit string
Limit Results
Default value:
10
next string
Next page of results token
Responses
- 200
200 OK
Response Headers
Access-Control-Allow-Origin
string
Access-Control-Allow-Methods
string
Access-Control-Allow-Headers
string
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
next string
Next page of results token
groups
object[]
List of groups
name string
Name of group
description string
Description of group
insertedDate string
Inserted timestamp of group
lastModifiedDate string
Last nodified timestamp of group
{
"next": "string",
"groups": [
{
"name": "string",
"description": "string",
"insertedDate": "string",
"lastModifiedDate": "string"
}
]
}
Loading...