Sign in

Batch Update Data Source Rows

documented

Batch update multiple Data Source Rows.

PATCH /v2/datasources/{id}/rows/batchData Sourcesno 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.goformz.com/v2/datasources/{{$dataSourceId}}/rows/batch" \
  -X PATCH \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{"rows": [ {"id": "{{$row_id_1}}", "values": {"{{$column_name_1}}": "{{$value_1}}", "{{$column_name_2}}": "{{$value_2}}"} }, {"id": "{{$row_id_2}}", "values": {"{{$column_name_1}}": "{{$value_3}}", "{{$column_name_2}}": "{{$value_4}}"} } ] }'