Sign in

Update record

documented

Update an existing record in the specified object.

PUT /v1/objects/{object_key}/records/{record_id}Objectsno 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/objects/{{$object_key}}/records/{{$record_id}}" \
  -X PUT \
  -H "X-Knack-Application-Id: {{KNACKHQ_APP_ID}}" \
  -H "X-Knack-REST-API-KEY: {{KNACKHQ_API_KEY}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"field_1": "{{$title}}", "field_2": "{{$description}}"}'
Update record · Knack · OpenIntegrations