Skip to content
Start here

Keys

List signing keys
stream.keys.get(KeyGetParams**kwargs) -> SyncSinglePage[KeyGetResponse]
GET/accounts/{account_id}/stream/keys
Create signing keys
stream.keys.create(KeyCreateParams**kwargs) -> Keys
POST/accounts/{account_id}/stream/keys
Delete signing keys
stream.keys.delete(stridentifier, KeyDeleteParams**kwargs) -> KeyDeleteResponse
DELETE/accounts/{account_id}/stream/keys/{identifier}
ModelsExpand Collapse
class Keys:
id: Optional[str]

Identifier.

maxLength32
created: Optional[datetime]

The date and time a signing key was created.

formatdate-time
jwk: Optional[str]

The signing key in JWK format.

pem: Optional[str]

The signing key in PEM format.

class KeyGetResponse:
id: Optional[str]

Identifier.

maxLength32
created: Optional[datetime]

The date and time a signing key was created.

formatdate-time
str