Skip to content
Start here

Keys

List signing keys
client.stream.keys.get(KeyGetParams { account_id } params, RequestOptionsoptions?): SinglePage<KeyGetResponse { id, created } >
GET/accounts/{account_id}/stream/keys
Create signing keys
client.stream.keys.create(KeyCreateParams { account_id, body } params, RequestOptionsoptions?): Keys { id, created, jwk, pem }
POST/accounts/{account_id}/stream/keys
Delete signing keys
client.stream.keys.delete(stringidentifier, KeyDeleteParams { account_id } params, RequestOptionsoptions?): KeyDeleteResponse
DELETE/accounts/{account_id}/stream/keys/{identifier}
ModelsExpand Collapse
Keys { id, created, jwk, pem }
id?: string

Identifier.

maxLength32
created?: string

The date and time a signing key was created.

formatdate-time
jwk?: string

The signing key in JWK format.

pem?: string

The signing key in PEM format.

KeyGetResponse { id, created }
id?: string

Identifier.

maxLength32
created?: string

The date and time a signing key was created.

formatdate-time
KeyDeleteResponse = string