apikeys
Update an api key
Update an api key for a specified service group
put/api/groups/{groupId}/apikeys/{clientId}
Path parameters
groupIdstring required
The api key group id
clientIdstring required
the api key id
Request body
Example request
{
"authorizedEntities": [
"a string value"
],
"clientId": "a string value",
"clientName": "a string value",
"clientSecret": "a string value",
"dailyQuota": 123,
"enabled": true,
"metadata": {
"key": "value"
},
"monthlyQuota": 123,
"throttlingQuota": 123
}Response
Successful operation
Example response
{
"authorizedEntities": [
"a string value"
],
"clientId": "a string value",
"clientName": "a string value",
"clientSecret": "a string value",
"dailyQuota": 123,
"enabled": true,
"metadata": {
"key": "value"
},
"monthlyQuota": 123,
"throttlingQuota": 123
}