Sign in

Update record

documented

Update an existing record.

PUT /api/v2/records/{record_id}.jsonRecordsno 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)

The following command targets Fulcrum's Update Record REST API endpoint and uses an API token for authentication. The official endpoint for updating a record is https://api.fulcrumapp.com/api/v2/records/{record_id}.json (PUT), and the base records collection endpoint is https://api.fulcrumapp.com/api/v2/records.json. Use a key/token via the X-ApiToken header. See Fulcrum's API reference for Update Record and Get All Records endpoints. ([docs.fulcrumapp.com](https://docs.fulcrumapp.com/reference/records-update))

npx -y keychains@latest curl "https://api.fulcrumapp.com/api/v2/records/{{$record_id}}.json" \
  -X PUT \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "X-ApiToken: {{FULCRUMAPP_API_KEY}}" \
  -d '{"record": {"form_values": {"{{$field_api_name_1}}": "{{$field_value_1}}", "{{$field_api_name_2}}": "{{$field_value_2}}"}, "form_id": "{{$form_id}}"}}'