Sign in

Get contact by email

documented

Returns the contact associated with the given email.

GET /dev/api/contacts/search/email/{email}Contactsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

Note: The official Agile CRM REST API for searching a contact by email uses POST /dev/api/contacts/search/email with a form-encoded body parameter email_ids. There is no documented GET endpoint that takes the email as a path parameter. Authentication is via Basic Auth using your login email as the username and your REST API key as the password. The base URL is account-domain specific, e.g. https://{domain}.agilecrm.com/dev/api/contacts/search/email. ([github.com](https://github.com/agilecrm/rest-api?utm_source=openai))

npx -y keychains@latest curl "https://{{$domain}}.agilecrm.com/dev/api/contacts/search/email" \
  -X POST \
  -u "{{$login_email}}:{{AGILECRM_API_KEY}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -d 'email_ids=["{{$search_email}}"]' \
  -v