Dynamics 365 Automation
Dynamics 365 Automation: manage CRM contacts, accounts, leads, opportunities, sales orders, invoices, and cases via the Dynamics CRM Web API
What this skill does
# Dynamics 365 Automation Automate Microsoft Dynamics 365 CRM operations including creating and updating contacts, accounts, leads, opportunities, sales orders, invoices, and support cases. **Toolkit docs:** [composio.dev/toolkits/dynamics365](https://composio.dev/toolkits/dynamics365) --- ## Setup This skill requires the **Rube MCP server** connected at `https://rube.app/mcp`. Before executing any tools, ensure an active connection exists for the `dynamics365` toolkit. If no connection is active, initiate one via `RUBE_MANAGE_CONNECTIONS`. --- ## Core Workflows ### 1. Manage Leads Create, update, retrieve, and list lead records. **Tools:** - `DYNAMICS365_DYNAMICSCRM_CREATE_LEAD` -- Create a new lead - `DYNAMICS365_DYNAMICSCRM_UPDATE_LEAD` -- Update an existing lead - `DYNAMICS365_DYNAMICSCRM_GET_A_LEAD` -- Retrieve a lead by GUID - `DYNAMICS365_DYNAMICSCRM_GET_ALL_LEADS` -- List/filter all leads **Key Parameters for `DYNAMICS365_DYNAMICSCRM_CREATE_LEAD`:** - `firstname` -- First name of the lead - `lastname` -- Last name of the lead - `emailaddress1` -- Primary email address - `telephone1` -- Primary phone number - `companyname` -- Associated company name - `subject` -- Brief title/description **Key Parameters for `DYNAMICS365_DYNAMICSCRM_GET_ALL_LEADS`:** - `filter` -- OData filter, e.g., `"contains(fullname,'John')"` - `select` -- Fields to return, e.g., `"fullname,emailaddress1"` - `orderby` -- Sort expression, e.g., `"createdon desc"` - `top` -- Max number of results **Example:** ``` Tool: DYNAMICS365_DYNAMICSCRM_CREATE_LEAD Arguments: firstname: "Jane" lastname: "Smith" emailaddress1: "[email protected]" companyname: "Acme Corp" subject: "Interested in Enterprise plan" ``` --- ### 2. Manage Accounts Create and organize account (company) records in the CRM. **Tool:** `DYNAMICS365_DYNAMICSCRM_CREATE_ACCOUNT` **Key Parameters:** - `name` -- Account/company name - `description` -- Description of the account - `revenue` -- Revenue amount (number) - `accountcategorycode` -- Category code (integer, default: 1) - `creditonhold` -- Whether account is on credit hold (boolean) **Example:** ``` Tool: DYNAMICS365_DYNAMICSCRM_CREATE_ACCOUNT Arguments: name: "Contoso Ltd" description: "Strategic partner for cloud services" revenue: 5000000 creditonhold: false ``` --- ### 3. Manage Contacts Create detailed contact records with address and phone information. **Tool:** `DYNAMICS365_DYNAMICSCRM_CREATE_CONTACT` **Key Parameters:** - `firstname`, `lastname` -- Contact name - `emailaddress1` -- Primary email - `telephone1` -- Primary phone - `mobilephone` -- Mobile phone - `jobtitle` -- Job title - `address1_city`, `address1_stateorprovince`, `address1_postalcode`, `address1_country` -- Address fields **Example:** ``` Tool: DYNAMICS365_DYNAMICSCRM_CREATE_CONTACT Arguments: firstname: "Bob" lastname: "Johnson" emailaddress1: "[email protected]" jobtitle: "VP of Engineering" address1_city: "Seattle" address1_stateorprovince: "WA" ``` --- ### 4. Manage Opportunities Create and update sales opportunities with estimated values and close dates. **Tools:** - `DYNAMICS365_DYNAMICSCRM_CREATE_OPPORTUNITY` -- Create a new opportunity - `DYNAMICS365_DYNAMICSCRM_UPDATE_OPPORTUNITY` -- Update an existing opportunity **Key Parameters for `DYNAMICS365_DYNAMICSCRM_CREATE_OPPORTUNITY`:** - `name` (required) -- Opportunity title - `description` -- Brief description - `estimatedvalue` -- Anticipated revenue (number) - `estimatedclosedate` -- Expected close date in `YYYY-MM-DD` format - `customer_account_id` -- GUID of the related account (no curly braces) - `customer_contact_id` -- GUID of the related contact (no curly braces) **Key Parameters for `DYNAMICS365_DYNAMICSCRM_UPDATE_OPPORTUNITY`:** - `opportunity_id` (required) -- GUID of the opportunity - `opportunityratingcode` -- 1 (Cold), 2 (Warm), 3 (Hot) - `salesstagecode` -- 1 (Qualify), 2 (Develop), 3 (Propose) **Example:** ``` Tool: DYNAMICS365_DYNAMICSCRM_CREATE_OPPORTUNITY Arguments: name: "Enterprise Cloud Migration" estimatedvalue: 250000 estimatedclosedate: "2026-06-30" description: "Full cloud migration project for Contoso" ``` --- ### 5. Manage Sales Orders and Invoices Create and update sales orders; generate invoices for billing. **Tools:** - `DYNAMICS365_DYNAMICSCRM_CREATE_SALES_ORDER` -- Create a new sales order - `DYNAMICS365_DYNAMICSCRM_UPDATE_SALES_ORDER` -- Update an existing sales order - `DYNAMICS365_DYNAMICSCRM_CREATE_INVOICE` -- Create a new invoice **Key Parameters for `DYNAMICS365_DYNAMICSCRM_CREATE_SALES_ORDER`:** - `name` -- Sales order name - `description` -- Description - `account_id` -- Reference to account, format: `"/accounts(GUID)"` - `currency_id` -- Currency reference, format: `"/transactioncurrencies(GUID)"` - `price_level_id` -- Price list reference, format: `"/pricelevels(GUID)"` **Key Parameters for `DYNAMICS365_DYNAMICSCRM_UPDATE_SALES_ORDER`:** - `salesorder_id` (required) -- GUID of the sales order - `name` -- Updated name - `discountamount` -- Updated discount - `freightamount` -- Updated shipping cost **Key Parameters for `DYNAMICS365_DYNAMICSCRM_CREATE_INVOICE`:** - `name` -- Invoice name/number, e.g., `"Invoice #12345"` - `description` -- Invoice description - `account_id` -- Related account reference - `currency_id` -- Currency reference - `price_level_id` -- Price list reference --- ### 6. Create Support Cases Create incident/case records for customer support tracking. **Tool:** `DYNAMICS365_DYNAMICSCRM_CREATE_CASE` **Key Parameters:** - `title` -- Subject/title of the case - `description` -- Detailed description - `prioritycode` -- 1 (Low), 2 (Normal), 3 (High) - `caseorigincode` -- 1 (Phone), 2 (Email), 3 (Web) - `account_id` -- Related account, format: `"/accounts(GUID)"` - `contact_id` -- Related contact, format: `"/contacts(GUID)"` **Example:** ``` Tool: DYNAMICS365_DYNAMICSCRM_CREATE_CASE Arguments: title: "Login issue reported by customer" description: "Customer unable to access portal since Feb 10" prioritycode: 3 caseorigincode: 2 ``` --- ## Known Pitfalls | Pitfall | Detail | |---------|--------| | **GUID format** | All entity IDs are GUIDs (e.g., `"00000000-0000-0000-0000-000000000000"`). Do not include curly braces for opportunity/contact references. | | **Reference format** | Related entity references use the format `"/entityset(GUID)"` (e.g., `"/accounts(abc-123)"`). Missing the leading slash or parentheses causes errors. | | **OData filter syntax** | Use Dynamics 365 OData syntax for `filter` (e.g., `contains(fullname,'John')`). Incorrect syntax returns empty or error responses. | | **user_id default** | Most tools default `user_id` to `"me"` for the authenticated user. Override only when acting on behalf of another user. | | **Required fields** | `CREATE_OPPORTUNITY` requires `name`. Other create tools have no strict required fields but will create empty records without data. | --- ## Quick Reference | Tool Slug | Description | |-----------|-------------| | `DYNAMICS365_DYNAMICSCRM_CREATE_LEAD` | Create a new lead record | | `DYNAMICS365_DYNAMICSCRM_UPDATE_LEAD` | Update an existing lead | | `DYNAMICS365_DYNAMICSCRM_GET_A_LEAD` | Retrieve a lead by GUID | | `DYNAMICS365_DYNAMICSCRM_GET_ALL_LEADS` | List/filter all leads | | `DYNAMICS365_DYNAMICSCRM_CREATE_ACCOUNT` | Create a new account | | `DYNAMICS365_DYNAMICSCRM_CREATE_CONTACT` | Create a new contact | | `DYNAMICS365_DYNAMICSCRM_CREATE_OPPORTUNITY` | Create a new opportunity | | `DYNAMICS365_DYNAMICSCRM_UPDATE_OPPORTUNITY` | Update an existing opportunity | | `DYNAMICS365_DYNAMICSCRM_CREATE_SALES_ORDER` | Create a new sales order | | `DYNAMICS365_DYNAMICSCRM_UPDATE_SALES_ORDER` | Update an existing sales order | | `DYNAMICS365_DYNAMICSCRM_CREATE_INVOICE` | Create a new invoice | | `DYNAMICS365_DYNAMICSCRM_CREATE_CASE` | Create a support case/incident | --- *Powered by [Composio](https://composio.dev)*
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.