Get list of users with membership status in a community
Parameters
Output
Encoding
application/jsoncursor
string
Optional
No description available.
members
array
Required
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"members"
],
"properties": {
"cursor": {
"type": "string",
"maxLength": 500
},
"members": {
"type": "array",
"items": {
"ref": "#memberView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"community"
],
"properties": {
"sort": {
"type": "string",
"default": "reputation",
"maxLength": 64,
"knownValues": [
"reputation",
"recent",
"alphabetical"
]
},
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string",
"maxLength": 500
},
"community": {
"type": "string",
"format": "at-identifier",
"description": "DID or handle of the community"
}
}
},
"description": "Get list of users with membership status in a community"
}