update-account
Modify an existing account in Dynamics 365 by updating its account data using the specified account ID.
Instructions
Update an existing account in Dynamics 365
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accountData | Yes | ||
accountId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"accountData": {
"additionalProperties": false,
"properties": {},
"type": "object"
},
"accountId": {
"type": "string"
}
},
"required": [
"accountId",
"accountData"
],
"type": "object"
}