Sign in

Update records

documented

Update existing records by sending a JSON payload.

POST /v1/recordsRecordsno 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.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}}]}'
Update records · Quickbase · OpenIntegrations