Skip to main content
POST
/
api
/
v1
/
integration-keys
Store (or replace) a service credential for a provider.
curl --request POST \
  --url https://api.backside.app/api/v1/integration-keys \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "key": "<string>",
  "provider": "<string>",
  "label": "<string>",
  "metadata": "<unknown>"
}
'
{
  "created_at": "2023-11-07T05:31:56Z",
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "metadata": "<unknown>",
  "provider": "<string>",
  "status": "<string>",
  "key_hint": "<string>",
  "label": "<string>",
  "last_verified_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Request body for POST /api/v1/integration-keys.

key
string
required

Plaintext service API key. Transported over TLS; never logged. Minimum 8 characters.

provider
string
required

Provider identifier. Valid values: cloudflare, github, netdata, postmark, outstand.

label
string | null

Optional human-readable label (e.g. "Production Cloudflare").

metadata
any

Provider-specific metadata (e.g. {"account_id": "..."} for Cloudflare, {"base_url": "https://..."} for Netdata).

Response

Key replaced (prior key revoked)

Public summary of one integration key row. Never includes the decrypted credential — only key_hint (last 4 chars) is exposed.

created_at
string<date-time>
required
id
string<uuid>
required
metadata
any
required
provider
string
required
status
string
required
key_hint
string | null
label
string | null
last_verified_at
string<date-time> | null