Short answer: You can search dynamics contacts in Microsoft Dynamics 365 by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the Microsoft Dynamics 365 Search Dynamics Contacts action to a workflow, map its 3 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.
Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.
| Field | Type | Required | Description |
|---|---|---|---|
Email email | string | Optional | Filter by primary email (exact match) |
Last Name last_name | string | Optional | Filter by last name (exact match) |
Limit top | number | Optional | Max records to return |
{"email": "{{trigger.email}}","last_name": "{{trigger.last_name}}","top": "{{trigger.top}}"}
{"value": [{"lastname": "Doe","contactid": "00000000-0000-0000-0000-000000000001","firstname": "Jane","emailaddress1": "jane@example.com"}]}
Use these fields in downstream nodes for routing, logging, or error handling.
Any of these apps can fire this action as part of a workflow.