PUT /a/config/oauth2clients/{ClientID}
[Enterprise Only] Add/Create a new oauth2 client
Body Parameters
Name | Description | Type | Required |
---|---|---|---|
Audience | array | ||
ClientID | string | ||
GrantTypes | array | ||
Name | string | ||
RedirectURIs | array | ||
ResponseTypes | array | ||
Scope | string | ||
Secret | string |
Body Example
{
"Audience": [
"string"
],
"ClientID": "string",
"GrantTypes": [
"string"
],
"Name": "string",
"RedirectURIs": [
"string"
],
"ResponseTypes": [
"string"
],
"Scope": "string",
"Secret": "string"
}
Response Example (200)
Response Type /definitions/entOAuth2ClientResponse
{
"Success": true
}