Skip to main content
POST
/
v2
/
keys
Create an API Key
curl --request POST \
  --url https://dev.sbx.imprint.co/v2/keys \
  --header 'Authorization: Bearer <token>'
{
  "key": "test_",
  "created_at": "2025-02-13T19:08:07.000Z",
  "deleted_at": "2025-02-13T19:08:07.000Z"
}

Authorizations

Authorization
string
header
required

Bearer HTTP authentication. Allowed headers-- Authorization: Bearer <api_key>

Response

API Key created successfully

Represents an API Key

key
string

API Key value

Example:

"test_"

created_at
string

the RFC-3339 date when the key was created

Example:

"2025-02-13T19:08:07.000Z"

deleted_at
string

the RFC-3339 date when the key was deleted

Example:

"2025-02-13T19:08:07.000Z"