Create Stream
client.Pipelines.Streams.New(ctx, params) (*StreamNewResponse, error)
POST/accounts/{account_id}/pipelines/v1/streams
Create a new Stream.
Security
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Example:
API Email + API Key
The previous authorization scheme for interacting with the Cloudflare API, used in conjunction with a Global API key.
Example:
The previous authorization scheme for interacting with the Cloudflare API. When possible, use API tokens instead of Global API keys.
Example:
Accepted Permissions (at least one required)
Create Stream
package main
import (
"context"
"fmt"
"github.com/cloudflare/cloudflare-go"
"github.com/cloudflare/cloudflare-go/option"
"github.com/cloudflare/cloudflare-go/pipelines"
)
func main() {
client := cloudflare.NewClient(
option.WithAPIToken("Sn3lZJTBX6kkg7OdcBUAxOO963GEIyGQqnFTOFYY"),
)
stream, err := client.Pipelines.Streams.New(context.TODO(), pipelines.StreamNewParams{
AccountID: cloudflare.F("0123105f4ecef8ad9ca31a8372d0c353"),
Name: cloudflare.F("my_stream"),
})
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", stream.ID)
}
{
"result": {
"id": "01234567890123457689012345678901",
"created_at": "2019-12-27T18:11:19.117Z",
"http": {
"authentication": false,
"enabled": true,
"cors": {
"origins": [
"string"
]
}
},
"modified_at": "2019-12-27T18:11:19.117Z",
"name": "my_stream",
"version": 3,
"worker_binding": {
"enabled": true
},
"endpoint": "https://01234567890123457689012345678901.ingest.cloudflare.com/v1",
"format": {
"type": "json",
"decimal_encoding": "number",
"timestamp_format": "rfc3339",
"unstructured": true
},
"schema": {
"fields": [
{
"type": "int32",
"metadata_key": "metadata_key",
"name": "name",
"required": true,
"sql_name": "sql_name"
}
],
"format": {
"type": "json",
"decimal_encoding": "number",
"timestamp_format": "rfc3339",
"unstructured": true
},
"inferred": true
}
},
"success": true
}Returns Examples
{
"result": {
"id": "01234567890123457689012345678901",
"created_at": "2019-12-27T18:11:19.117Z",
"http": {
"authentication": false,
"enabled": true,
"cors": {
"origins": [
"string"
]
}
},
"modified_at": "2019-12-27T18:11:19.117Z",
"name": "my_stream",
"version": 3,
"worker_binding": {
"enabled": true
},
"endpoint": "https://01234567890123457689012345678901.ingest.cloudflare.com/v1",
"format": {
"type": "json",
"decimal_encoding": "number",
"timestamp_format": "rfc3339",
"unstructured": true
},
"schema": {
"fields": [
{
"type": "int32",
"metadata_key": "metadata_key",
"name": "name",
"required": true,
"sql_name": "sql_name"
}
],
"format": {
"type": "json",
"decimal_encoding": "number",
"timestamp_format": "rfc3339",
"unstructured": true
},
"inferred": true
}
},
"success": true
}