Streams
List Streams
pipelines.streams.list(StreamListParams**kwargs) -> SyncV4PagePaginationArray[StreamListResponse]
GET/accounts/{account_id}/pipelines/v1/streams
Get Stream Details
pipelines.streams.get(strstream_id, StreamGetParams**kwargs) -> StreamGetResponse
GET/accounts/{account_id}/pipelines/v1/streams/{stream_id}
Create Stream
pipelines.streams.create(StreamCreateParams**kwargs) -> StreamCreateResponse
POST/accounts/{account_id}/pipelines/v1/streams
Update Stream
pipelines.streams.update(strstream_id, StreamUpdateParams**kwargs) -> StreamUpdateResponse
PATCH/accounts/{account_id}/pipelines/v1/streams/{stream_id}
Delete Stream
pipelines.streams.delete(strstream_id, StreamDeleteParams**kwargs) -> object
DELETE/accounts/{account_id}/pipelines/v1/streams/{stream_id}
ModelsExpand Collapse
class StreamListResponse: …
class StreamListResponse: …
format: Optional[Format]Defines the data format of the events.
format: Optional[Format]
Defines the data format of the events.
schema: Optional[Schema]Defines the schema of the events in the data stream.
schema: Optional[Schema]
Defines the schema of the events in the data stream.
class StreamGetResponse: …
class StreamGetResponse: …
format: Optional[Format]Defines the data format of the events.
format: Optional[Format]
Defines the data format of the events.
schema: Optional[Schema]Defines the schema of the events in the data stream.
schema: Optional[Schema]
Defines the schema of the events in the data stream.
class StreamCreateResponse: …
class StreamCreateResponse: …
format: Optional[Format]Defines the data format of the events.
format: Optional[Format]
Defines the data format of the events.
schema: Optional[Schema]Defines the schema of the events in the data stream.
schema: Optional[Schema]
Defines the schema of the events in the data stream.
class StreamUpdateResponse: …
class StreamUpdateResponse: …
format: Optional[Format]Defines the data format of the events.
format: Optional[Format]
Defines the data format of the events.
schema: Optional[Schema]Defines the schema of the events in the data stream.
schema: Optional[Schema]
Defines the schema of the events in the data stream.