v1

latestOpenAPI 3.0.02026-07-142351,1971.3 MB
Key Management

Edit an application key

Edit an application key name. This endpoint is disabled for organizations in One-Time Read mode.

Note: This endpoint is disabled for the Government sites (US1-FED and US2-FED). Use the V2 Key Management endpoints instead.

put/api/v1/application_key/{key}

Path parameters

keystring required

The specific APP key you are working with.

Request body

hashstring

Hash of an application key.

namestring

Name of an application key.

ownerstring

Owner of an application key.

Example request

{
  "hash": "1234512345123459cda4eb9ced49a3d84fd0138c",
  "name": "example user",
  "owner": "example.com"
}

Response

OK

Example response

{
  "application_key": {
    "hash": "1234512345123459cda4eb9ced49a3d84fd0138c",
    "name": "app_key",
    "owner": "test_user"
  }
}