v1

latestOpenAPI 3.0.02026-07-142351,1971.3 MB
Key Management

Create an application key

Create an application key with a given 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.

post/api/v1/application_key

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"
  }
}