Get a list of all users
GET//v1/users
Get a list of all users
Responses
- 200
- 401
A list of all users
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
permissions string[]required
username stringrequired
[
{
"permissions": [
"permissions",
"permissions"
],
"username": "username"
}
]
Unauthorized (Wrong permissions, missing token)
- application/json
- Schema
- Example (from schema)
Schema
error stringrequired
missingPermission stringrequired
{
"error": "string",
"missingPermission": "string"
}
Authorization: Authorization
name: Authorizationtype: apiKeydescription: JWT Tokenin: header
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET '/v1/users' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'
ResponseClear