Create contact
documentedCreate a new contact
POST /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://{{$brand}}.reamaze.io/api/v1/contacts" \
-u "{{$login_email}}:{{REAMAZE_API_KEY}}" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-X POST \
-d '{"contact": {"name": "{{$name}}", "email": "{{$email}}", "id": "{{$id}}", "external_avatar_url": "{{$avatar_url}}", "notes": ["{{$note1}}", "{{$note2}}"], "data": {"custom_attribute": "{{$custom_attribute}}"}}}'