Hierarchy

  • BaseResourceAPI<Stream>
    • StreamsAPI

Methods

  • Delete a stream

    Deletes a stream by its identifier, along with all records stored in the stream. If the stream does not exist, the operation succeeds without error (idempotent delete).

    await client.streams.delete('my_stream');
    

    Parameters

    • externalId: string

    Returns Promise<void>