curl --request PUT \
--url https://nvidia.casebender.com/api/v1/api-keys/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"scopes": [
"<string>"
],
"tier": "<string>",
"expiresAt": "2023-11-07T05:31:56Z",
"maxTlpLevel": 2,
"ipWhitelist": [
"<string>"
],
"rateLimit": 123
}
'Update an existing API key
curl --request PUT \
--url https://nvidia.casebender.com/api/v1/api-keys/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"scopes": [
"<string>"
],
"tier": "<string>",
"expiresAt": "2023-11-07T05:31:56Z",
"maxTlpLevel": 2,
"ipWhitelist": [
"<string>"
],
"rateLimit": 123
}
'API key authentication. Use format: Bearer cbr_live_your_key
Default Response