Create data stream
documentedCreate a new data stream.
POST /data_streamsData Streamsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://www.workboard.com/api/v1/data_streams" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"name":"{{$name}}","description":"{{$description}}","type":"{{$data_stream_type}}","data_source_id":"{{$data_source_id}}","config":{"endpoint":"{{$endpoint}}","sample_rate":"{{$sample_rate}}"},"tags":["{{$tag1}}","{{$tag2}}"]}'