Sign in

Update view record

documented

Update an existing record via the specified view.

PUT /v1/pages/scene_{scene_id}/views/view_{view_id}/records/{record_id}Viewsno 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.knack.com/v1/pages/scene_{{$scene_id}}/views/view_{{$view_id}}/records/{{$record_id}}" \
  -X PUT \
  -H "X-Knack-Application-Id: {{KNACKHQ_APP_ID}}" \
  -H "X-Knack-REST-API-Key: {{KNACKHQ_API_KEY}}" \
  -H "Authorization: {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"field_27": "{{$field_27}}", "field_42": "{{$field_42}}"}'