Create contact
documentedCreates a new contact.
POST /api/v1/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.nimble.com/api/v1/contacts" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Accept: application/json" \
-H "Content-Type: application/json; charset=utf-8" \
-d '{"avatar_url": "{{$avatar_url}}", "fields": {"first name": [{"value": "{{$first_name}}", "modifier": ""}], "last name": [{"value": "{{$last_name}}", "modifier": ""}], "email": [{"value": "{{$email}}", "modifier": "work"}]}}'