List users
GET/api/v1/mssp/:mssp-id/user
x-public: "true"
List users for given mssp console
Request
Path Parameters
mssp-id stringrequired
The id of the MSSP of interest
Query Parameters
next_page_token string
Token to fetch next page. Max pagesize is 60.
Responses
- 200
- 400
- 401
- 429
List of users
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
value object[]
username string
firstName string
lastName string
lastModifiedBy string
lastModifiedAt int64
nextPageToken string
{
"value": [
{
"username": "string",
"firstName": "string",
"lastName": "string",
"lastModifiedBy": "string",
"lastModifiedAt": 0
}
],
"nextPageToken": "string"
}
Bad request. One of the required arguments is missing or fails a constraint
- application/json
- Schema
- Example (from schema)
Schema
error objectrequired
code stringrequired
message stringrequired
target string
details undefined[]
{
"error": {
"code": "string",
"message": "string",
"target": "string",
"details": [
null
]
}
}
Authentication error
- application/json
- Schema
- Example (from schema)
Schema
error objectrequired
code stringrequired
message stringrequired
target string
details undefined[]
{
"error": {
"code": "string",
"message": "string",
"target": "string",
"details": [
null
]
}
}
Too many requests
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
value object[]
username string
firstName string
lastName string
lastModifiedBy string
lastModifiedAt int64
nextPageToken string
{
"value": [
{
"username": "string",
"firstName": "string",
"lastName": "string",
"lastModifiedBy": "string",
"lastModifiedAt": 0
}
],
"nextPageToken": "string"
}
Loading...