Sign in

Find or create dataset

documented

Find an existing dataset or create a new dataset with the given id and schema.

PUT /datasets/{id}Datasetsno implementation yet0 runs
No 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://api.geckoboard.com/datasets/{{$dataset_id}}" \
  -X PUT \
  -u '{{GECKOBOARD_API_KEY}}:' \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{ "fields": { "{{$field1_key}}": { "type": "{{$field1_type}}", "name": "{{$field1_name}}", "optional": {{$field1_optional}} }, "{{$field2_key}}": { "type": "{{$field2_type}}", "name": "{{$field2_name}}", "optional": {{$field2_optional}} } }, "unique_by": ["{{$unique_by}}"] }' }