Discover how a bimodal integration strategy can address the major data management challenges facing your organization today.
Get the Report →Configure a One-Way Send Port for the CData BizTalk Adapter for Monday.com
Use the adapter for Monday.com with a one-way send port to execute updategrams and data manipulation SQL in BizTalk.
This section provides step-by-step instructions for creating, configuring, and testing a static one-way send port using the CData BizTalk Adapter for Monday.com. You can use static one-way send ports to execute updategrams, SQL commands, and stored procedures. Send ports are useful for operations that modify Monday.com data but do not have any response data. Typically, this would be DELETE or UPDATE SQL commands or updategrams, and occasionally stored procedure operations.
If you want to trigger actions that will return a response, such as executing SELECT commands or retrieving the Id of a record that you have created, use a solicit-response send port.
Create and Configure the One-Way Send Port
Create a static one-way send port and configure it to use the Monday.com adapter as its transport type.
- If you have not already done so, open your BizTalk application in the BizTalk Administration Console.
- In the node for your BizTalk application, right-click Send Ports and select New -> Static One-Way Send Port. The send port properties dialog is displayed.
- In the Name menu, enter a name for the send port.
- In the Type menu, select CData.Monday.
- In the Send Pipeline menu, select the default option, PassThruTransmit.
Configure the Adapter
Define the command that the adapter will execute in the Transport Properties dialog.
- In the send port properties, click the Configure button. The CData.Monday.com Transport Properties dialog is displayed.
- In the CommandType property, select the command type you want.
- If you want to execute an SQL command, enter the command in the SQL Command box.
Configure the Connection to Monday.com
Configure credentials and other properties required to connect to Monday.com in the Connection String Options dialog.
- In the send port properties dialog, click Configure. The adapter properties dialog is displayed.
- Click the button in the Connection String property.
- Click the box in the Connection String property. The Connection String Options dialog is displayed.
- Enter connection properties. Below is a typical connection string:
APIToken=eyJhbGciOiJIUzI1NiJ9.yJ0aWQiOjE0MTc4NzIxMiwidWlkIjoyNzI3ODM3OSwiaWFkIjoiMjAyMi0wMS0yMFQxMDo0NjoxMy45NDFaIiwicGV;
You can connect to Monday.com using either API Token authentication or OAuth authentication.
Connecting with an API Token
Connect to Monday.com by specifying the APIToken. Set the AuthScheme to Token and obtain the APIToken as follows:
- API tokens for admin users
- Log in to your Monday.com account and click on your avatar in the bottom left corner.
- Select Admin.
- Select "API" on the left side of the Admin page.
- Click the "Copy" button to copy the user's API token.
- API tokens for non-admin users
- Click on your profile picture in the bottom left of your screen.
- Select "Developers"
- Click "Developer" and then "My Access Tokens" at the top.
- Select "Show" next to the API token, where you'll be able to copy it.
Connecting with OAuth Authentication
Alternatively, you can establish a connection using OAuth (refer to the OAuth section of the Help documentation).
- API tokens for admin users
- Click Test Connection to verify the values and test connectivity.
After you connect successfully and define the command the adapter will execute, the send port is ready for use. See the following section for an example of using a one-way send port in a simple application. The application reads updategram commands contained in a file and uses a send port to execute the command.
In the example, filters are used to move the messages that contain the updategram from the receive location to the send port. See the following section for more information on filters.
Create Filters to Route BizTalk Messages Through an Application
To associate a send port with the messages you want, create a filter rule in the Filters section of the properties for that send port. Messages matching the criteria will be routed to the send port. See the following example to filter on a receive location.
Example: Execute Updategrams with a One-Way Send Port
This section shows how to use a one-way send port in a simple application. The application reads updategram commands contained in a file and executes the commands:
- A one-way receive location picks up the XML document containing the updategram.
- The receive location creates a BizTalk message containing the results of the command.
- A one-way send port filters on the URI of the receive location. The document is routed to the one-way send port.
- The send port executes the updategram command.
As in the preceding example, the followings steps show how to set up a receive location to read updategrams from a file and use a send port to execute the commands:
- Create and configure a static one-way receive location. Use the File transport type. You can follow the same procedure to create and configure a receive location for the CData BizTalk Adapter for Monday.com.
- Create a static one-way send port.
- In the send port properties, click Filters.
- In an empty property, set the following values:
- Property
- Select BTS.InboundTransportLocation from the menu.
- Value
- Enter the URI of the newly created one-way receive location.