Update a Client Key
Update a client key. This can be used to rename a key.
Path Parameters
organization_slug
(string)REQUIREDThe slug of the organization the client keys belong to.
project_slug
(string)REQUIREDThe slug of the project the client keys belong to.
key_id
(string)REQUIREDThe ID of the key to update.
Body Parameters
name
(string)The new name for the client key.
Scopes
You need to authenticate via bearer auth token.
<auth_token>
requires the following scopes:project:write
PUT /api/0/projects/{organization_slug}/{project_slug}/keys/{key_id}/
curl https://sentry.io/api/0/projects/{organization_slug}/{project_slug}/keys/{key_id}/ \ -H 'Authorization: Bearer <auth_token>' \ -X PUT \ -H 'Content-Type: application/json' \ -d '{"name":"Fluffy Key"}'
RESPONSESCHEMA
{
"browserSdk": {
"choices": [
[
"latest",
"latest"
],
[
"4.x",
"4.x"
]
]
},
"browserSdkVersion": "4.x",
"dateCreated": "2018-11-06T21:20:07.941Z",
"dsn": {
"cdn": "https://sentry.io/js-sdk-loader/cec9dfceb0b74c1c9a5e3c135585f364.min.js",
"csp": "https://sentry.io/api/2/csp-report/?sentry_key=cec9dfceb0b74c1c9a5e3c135585f364",
"minidump": "https://sentry.io/api/2/minidump/?sentry_key=cec9dfceb0b74c1c9a5e3c135585f364",
"public": "https://cec9dfceb0b74c1c9a5e3c135585f364@sentry.io/2",
"secret": "https://cec9dfceb0b74c1c9a5e3c135585f364:4f6a592349e249c5906918393766718d@sentry.io/2",
"security": "https://sentry.io/api/2/security/?sentry_key=cec9dfceb0b74c1c9a5e3c135585f364"
},
"id": "cec9dfceb0b74c1c9a5e3c135585f364",
"isActive": true,
"label": "Fluffy Key",
"name": "Fluffy Key",
"projectId": 2,
"public": "cec9dfceb0b74c1c9a5e3c135585f364",
"rateLimit": null,
"secret": "4f6a592349e249c5906918393766718d"
}