List App Clients
GET/v1/app-clients
List App Clients
Request
Query Parameters
pageSize int32
Page size. Must be between 1 and 100.
pageToken string
Page token to retrieve the next page of results.
Responses
- 200
- default
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
appClients
object[]
required
Filter to a list of App Client identifiers.
appClientId stringrequired
The identifier of the App Client.
name stringrequired
The name of the App Client.
description stringrequired
The description of the App Client
clientId stringrequired
The client identifier for the App Client
clientSecretHint stringrequired
A hint for the client secret for the App Client.
roles string[]required
The list of roles that the App Client has.
nextPageToken string
(Optional) Page token to retrieve the next page of results.
{
"appClients": [
{
"appClientId": "string",
"name": "string",
"description": "string",
"clientId": "string",
"clientSecretHint": "string",
"roles": [
"string"
]
}
],
"nextPageToken": "string"
}
Error
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
code int32
An error status code describing the response.
Enum Value | Description |
---|---|
0 | OK |
1 | Cancelled |
2 | Unknown |
3 | InvalidArgument |
4 | DeadlineExceeded |
5 | NotFound |
6 | AlreadyExists |
7 | PermissionDenied |
8 | ResourceExhausted |
9 | FailedPrecondition |
10 | Aborted |
11 | OutOfRange |
12 | Unimplemented |
13 | Internal |
14 | Unavailable |
15 | DataLoss |
16 | Unauthenticated |
Possible values: [0
, 1
, 2
, 3
, 4
, 5
, 6
, 7
, 8
, 9
, 10
, 11
, 12
, 13
, 14
, 15
, 16
]
message string
A developer-facing error message
details
object[]
A list of messages containing details about the errors
@type stringrequired
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
Loading...