Submit form
documentedSubmit a form (form submission).
POST /v1/forms/{id}/submissionsFormsno 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.kajabi.com/v1/forms/{{$id}}/submit" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/vnd.api+json" \
-H "Accept: application/vnd.api+json" \
-d '{"data": {"type": "form_submissions", "attributes": {"name": "{{$name}}", "email": "{{$email}}", "phone_number": "{{$phone_number}}", "business_number": "{{$business_number}}", "address_line_1": "{{$address_line_1}}", "address_line_2": "{{$address_line_2}}", "address_city": "{{$address_city}}", "address_state": "{{$address_state}}", "address_country": "{{$address_country}}", "address_zip": "{{$address_zip}}", "custom_1": "{{$custom_1}}", "custom_2": "{{$custom_2}}", "custom_3": "{{$custom_3}}"}}}'