Skip to main content
POST
/
v2
/
BulkListGroupUsers
List users in group in bulk
curl --request POST \
  --url http://localhost:3000/v2/BulkListGroupUsers \
  --header 'Content-Type: application/json' \
  --header 'X-Bunker-Token: <api-key>' \
  --data '
{
  "unlockuuid": "<string>",
  "groupid": 123,
  "groupname": "<string>",
  "offset": 0,
  "limit": 10,
  "request_metadata": {}
}
'
{
  "status": "ok",
  "rows": [
    {
      "token": "<string>",
      "profile": {}
    }
  ]
}

Authorizations

X-Bunker-Token
string
header
required

API token for authentication

Body

application/json
unlockuuid
string
required

UUID from bulk list unlock

groupid
integer

ID of the group

groupname
string

Name of the group

offset
integer
default:0

Offset for pagination

limit
integer
default:10

Limit for pagination

request_metadata
object

Additional metadata for the request

Response

200 - application/json

Group users listed successfully

status
string
Example:

"ok"

rows
object[]