Get All O Auth2 Client Summaries
This endpoint is to list existing OAuth 2.0 clients. Returns a summary for each client.
The VMware Identity Services tenant ID
my-tenant
The index of the page. Pages start with index 1.
1
Number of results per page.
50
The string to be searched within the OAuth client' displayName or clientId
myApp
OAuth2 Clients returned successfully.
{
"items": [
{
"scope": [
"admin",
"openid",
"profile",
"email"
],
"_links": {
"self": {
"href": "https://example.com/path-to-self"
}
},
"client_id": "oauth_clientid"
}
],
"totalCount": 0,
"pageNumber": 0,
"totalPages": 0,
"pageSize": 0,
"_links": {
"self": {
"href": "https://example.com/path-to-self"
}
}
}
Represents a summary of an OAuth 2.0 client
Count of total number of elements for the request
Current page number
Total number of pages for the request
Number of elements returned per page
The resource HATEOAS links. Usually includes a "self" link for this resource
Invalid starting index or page size.
curl -H 'Authorization: <value>' https://{api_host}/acs/t/{tenant}/broker/oauth2-clients