Plese note: the Microsoft Dynamics CRM component has been deprecated and is no longer supported. We highly recommend migrating to the newer Microsoft Dynamics CRM v2 component, which offers improved functionality and ongoing maintenance.
Please update your codebase to utilize the Microsoft Dynamics CRM v2 as soon as possible to ensure compatibility with future updates and benefit from the latest features.
Provides a simple interface for quickly creating large amounts of objects.
accounts
. inputObjects: [
{
name: "Sample account 1",
telephone1: "+1 (555) 123-4567",
address1_latitude: 47.639583,
description: "This is the description of the sample account",
revenue: 5000000
}, {
name: "Sample account 2",
description: "This is the description of the sample account 2",
}
]
More information Dynamics 365 Basic Create
Result is an object with a property result: array
. It contains the list of newly created object IDs.
Bulk create performed in a single transactional operation. Error will be thrown in case when one of objects in input cannot be created (for example due to invalid input).
Current implementation can process up to 100 objects at the time.
Provides a simple interface for quickly updating large amounts of objects.
accounts
.array
of the objects. Each object contains id and new values for the updated object. Format is the same as for the bulk create action but objects must also contain id field.
Example input objects for updating 2 accounts: inputObjects: [
{
id: "AAAAAAAA-EC57-EA11-A811-000D3A2287A4",
description: "New description of the sample account"
}, {
id: "BBBBBBBB-EC57-EA11-A811-000D3A2287A4",
description: "New description of the sample account 2",
}
]
Result is an object with a property result: array
. It contains the list boolean
results of an operation.
Current implementation can process up to 100 objects at the time.
Provides a simple interface for quickly deleting large amounts of objects.
accounts
. Example input objects for deleting 2 accounts: inputObjects: [
{
id: "AAAAAAAA-EC57-EA11-A811-000D3A2287A4",
}, {
id: "BBBBBBBB-EC57-EA11-A811-000D3A2287A4",
}
]
array
of the objects. Each object contains id for deleted objects.In case of successful operation result is an object with a property result: boolean
= true
.
Current implementation can process up to 100 objects at the time.
Deletes a Selected Object.
account
string
, DynamicsCRM 365 object id.In case of successful operation result is an object with a property result: boolean
= true
.
Given a set of criteria which matches exactly one record, find that matching record.
All Objects Programmatically Detectable Covered. Requires a sample object to exist to infer schema. Shows all fields, not just unique fields. Does not necessarily understand type for field.
Creates or Updates Selected Object.
Action creates a single object. Input metadata is fetched dynamically from your Dynamics 365 account. Output metadata is the same as input metadata, so you may expect all fields that you mapped as input to be returned as output.
accounts
.ImageType
) then the input data is put into object’s binary field. In this case any data specified for the binary field in the data mapper is discarded.You should specify ID for making updates in object.
When Utilize data attachment from previous step (for objects with a binary field) is checked and this action is used with Local Agent error would be thrown: ‘getaddrinfo ENOTFOUND steward-service.platform.svc.cluster.local steward-service.platform.svc.cluster.local:8200’.
Use Lookup Object by Field instead
Given a set of criteria which matches exactly one record, find that matching record.
All Objects Programmatically Detectable Covered. Requires a sample object to exist to infer schema. Shows all fields, not just unique fields. Does not necessarily understand type for field.
Use Upsert Object instead
Update an existing entry if the id provided. Otherwise create a new entry.
All Objects Programmatically Detectable Covered. Requires a sample object to exist to infer schema. Does not inform following components if new.
Use Upsert Object action instead.
Use Upsert Object action instead.
Use Upsert Object action instead.
Use Upsert Object action instead.
Use Upsert Object action instead.
Use Upsert Object action instead.
Use Upsert Object action instead.
Use Upsert Object action instead.
Use Upsert Object action instead.
Use Upsert Object action instead.