Update records
documentedUpdate existing records by sending a JSON payload.
POST /v1/recordsRecordsno 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://api.quickbase.com/v1/records" \
-X POST \
-H "QB-Realm-Hostname: {{QUICKBASE_REALM_HOSTNAME}}" \
-H "Authorization: QB-USER-TOKEN {{QUICKBASE_USER_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"to": "{{$table_dbid}}", "data": [{"3": {"value": {{$field3_value}}}, "7": {"value": {{$field7_value}}}}], "fieldsToReturn": [{{$fieldsToReturn}}]}'