Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Square 9’s integration with Dynamics supports bi-directional data flows. Not only can you PULL data from dynamics, you can also PUSH new items into dynamics using the no-code abilities offered by GlobalCapture.

Most, if not all, Dynamics 365 Business Central object support create events. For example, if can automatically create a new vendor after a vendor onboarding and approval process in GlobalCapture. To create objects, provide a Request Body that matches the object’s definition in the Dynamics 365 Business Central documentation.

The Business Central documentation is complete and voluminous, but does not do a great job at indicating which fields are required and which are optional. Refer to Square 9’s packaged solution for Dynamics 365 Business Central for examples of creating common objects. Verbose messaging is also returned from the Dynamics APIs which is reported back in the GlobalCapture process history. This can be very helpful when debugging workflows and creating new objects. Some trial and error when building your workflow might be necessary to ensure objects are being created as expected, which is not unexpected for any workflow build.

For example:

{
    "displayName":"{p_selectedVendor}",
    "email":"{p_Vendor Email}",
    "website":"{p_Vendor Website}",
    "taxRegistrationNumber":"{p_Vendor Tax No}"
}

  • No labels