Create view record
documentedCreate a new record via the specified view (e.g., submitting a form in the view).
POST /v1/pages/scene_{scene_id}/views/view_{view_id}/recordsViewsno 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.knack.com/v1/pages/scene_{{$scene_id}}/views/view_{{$view_id}}/records" \
-X POST \
-H "X-Knack-Application-Id: {{KNACKHQ_APPLICATION_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_1": "{{$title}}", "field_2": "{{$description}}", "field_3": "{{$status}}"}'"