Create contact
documentedCreate a new contact.
POST /v2/contactsContactsno 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.moskitcrm.com/v2/contacts" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "apikey: {{MOSKITCRM_API_KEY}}" \
-d '{"contact": {"first_name": "{{$first_name}}", "last_name": "{{$last_name}}", "email": "{{$email}}", "phone": "{{$phone}}", "company_name": "{{$company}}"}}'