get-associated-opportunities
Retrieve opportunities linked to a specific account in Dynamics 365 using the provided account ID. Facilitates efficient account-related opportunity management.
Instructions
Fetch opportunities for a given account from Dynamics 365
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accountId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"accountId": {
"type": "string"
}
},
"required": [
"accountId"
],
"type": "object"
}