| Namespace | http://www.mulesoft.org/schema/mule/handshake |
|---|---|
| Schema Location | http://www.mulesoft.org/schema/mule/handshake/current/mule-handshake.xsd (View Schema) |
| Schema Version | 1.0-SNAPSHOT |
| Minimum Mule Version | 3.2 |
Handshake Cloud Connector Note on creation of resources and references Some creation methods allow to specify nested objects either as new or references to existing. Whenever you want to create a object that references an existing one (for example, a new Order for an existing Customer), you just have to specify the resourceUri of the nested object.
<handshake:create-order>
<handshake:order>
<handshake:customer resourceUri="/api/v2/customers/1"/>
</handshake:create-order>
</handshake:order>
However, you can also create a nested object alongside the master one.
<handshake:create-order>
<handshake:order>
<handshake:customer id="SOME_ID" name="Some Customer">
<handshake:bill-to city="Springfiled" stree="742 Evergreen Terrace"/>
</handshake:customer>
</handshake:create-order>
</handshake:order>
When you create a new object through the API, the returned value will always contain a resourceUri attribute, which should be stored in your external system for future use as a reference.
| Configuration | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Configure an instance of this module
| |||||||||||
| Message Processors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Creates a
Address on Handshake | |||||||||||
Creates a
Category on handshake | |||||||||||
Creates a
Customer on Handshake
Take into account than neither the CustomerGroup nor the UserGroup can be created alongside the Customer
You can either let them be the default values for your account (by not specifying them), or use their resourceUri property to reference an existing one | |||||||||||
Creates a
Item on handshake | |||||||||||
Creates
Items on handshake | |||||||||||
Creates a
Order on handshake | |||||||||||
Find all customers for the connected account that match the filters
| |||||||||||
Get all items for the connected account that match the filters
| |||||||||||
Find all Sales Orders for the connected account that match the filters
| |||||||||||
Get a
Address, given its id | |||||||||||
Get a
Category, given its id | |||||||||||
Get a
Customer, given its resourceUri | |||||||||||
Get a
CustomerGroup, given its id | |||||||||||
Get a
Item, given its resourceUri | |||||||||||
Get a
Order, given its resourceUri | |||||||||||
Get a
UserGroup, given its id | |||||||||||
Updates a
Address on Handshake, given its resourceUri | |||||||||||
Updates a
Customer on Handshake, given her resourceUri
Take into account than neither the CustomerGroup nor the UserGroup can be created alongside the Customer
You can either let them be the default values for your account (by not specifying them), or use their resourceUri property to reference an existing one | |||||||||||
Updates a
Item on Handshake, given its resourceUri | |||||||||||
To use the this module within a flow the namespace to the module must be included. The resulting flow will look similar to the following:
<mule xmlns="http://www.mulesoft.org/schema/mule/core"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:handshake="http://www.mulesoft.org/schema/mule/handshake"
xsi:schemaLocation="
http://www.mulesoft.org/schema/mule/core
http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/handshake
http://www.mulesoft.org/schema/mule/handshake/current/mule-handshake.xsd">
<!-- here goes your flows and configuration elements -->
</mule>
This module is configured using the config element. This element must be placed outside of your flows and at the root of your Mule application. You can create as many configurations as you deem necessary as long as each carries its own name.
Each message processor, message source or transformer carries a config-ref attribute that allows the invoker to specify which configuration to use.
| Attributes | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Type | Name | Default Value | Description | Java Type | MIME Type | Encoding | Optional. Give a name to this configuration so it can be later referenced. | ||||
| Optional. Secret key provided by Handshake to by-pass throttling checks. | |||||||||||
| https://app.handshake-app.com/api/v2/ | Optional. Endpoint to which the Connector should connect and call API methods | ||||||||||
This connector offers automatic connection management via the use of a connection pool. The pool will act a storage mechanism for all the connections that are in-use by the user of this connector.
Prior to execution of a processor, the connector will attempt to lookup an already established connection and if one doesn't exists it will create one. That lookup mechanism is done in the connection pool via the use of connection variables declared as keys.
The user of the connector can configure the pool by adding a connection-pooling-profile to the connector configuration like this:
<handshake:connection-pooling-profile maxActive="10" maxIdle="10"
exhaustedAction="WHEN_EXHAUSTED_GROW" maxWait="120" minEvictionMillis="60000" evictionCheckIntervalMillis="30000"/>
The following is a list of connection attributes, each connection attribute can be configured at the config element level or they can also be added to each processor. If they are used at the processor level they get the benefit of full expression resolution.
| Connection Attributes | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Name | Default Value | Description | Java Type | MIME Type | Encoding | ||||||
| Optional. Specify which configuration to use. | |||||||||||
| The API key for the user | String | */* | UTF-8 | ||||||||
| Optional. Used for sensitive data encryption. Please refer to http://www.handshake-app.com/help/kb/api/api-authentication | String | */* | UTF-8 | ||||||||
Reconnection Strategies specify how a connector behaves when its connection fails. You can control how Mule attempts to reconnect by specifying a number of criteria:
With a reconnection strategy, you can better control the behavior of a failed connection, by configuring it, for example, to re-attempt the connection only once every 15 minutes, and to give up after 30 attempts. You can also send an automatic notification to your IT administrator whenever this reconnection strategy goes into effect. You can even define a strategy that attempts to reconnect only during business hours. Such a setting can prove useful if your server is frequently shut down for nightly maintenance.
A reconnection strategy that allows the user to configure how many times a reconnection should be attempted and how long to wait between attempts.
<handshake:config>
<reconnect count="5" frequency="1000"/>
</handshake:config>
| Reconnect Attributes | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Name | Default Value | Description | |||||||||
| Optional. How often (in ms) to reconnect | |||||||||||
| Optional. How many reconnection attempts to make | |||||||||||
For more information about reconnection strategies in Mule, or even how to write your own custom reconnection strategy please check this section.
Creates a Address on Handshake
| Name | Default Value | Description | Java Type | MIME Type | Encoding | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Optional. Specify which configuration to use. | |||||||||||
To create
XML SampleINCLUDE_ERROR |
Address | */* | |||||||||
| Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. | |||||||||||
| Optional. The API key for the user | String | */* | UTF-8 | ||||||||
| Optional. Used for sensitive data encryption. Please refer to http://www.handshake-app.com/help/kb/api/api-authentication | String | */* | UTF-8 | ||||||||
| Return Type | Description |
|---|---|
| Address | the created address |
Creates a Category on handshake
| Name | Default Value | Description | Java Type | MIME Type | Encoding | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Optional. Specify which configuration to use. | |||||||||||
To create
XML SampleINCLUDE_ERROR |
Category | */* | |||||||||
| Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. | |||||||||||
| Optional. The API key for the user | String | */* | UTF-8 | ||||||||
| Optional. Used for sensitive data encryption. Please refer to http://www.handshake-app.com/help/kb/api/api-authentication | String | */* | UTF-8 | ||||||||
| Return Type | Description |
|---|---|
| Category | the created category |
Creates a Customer on Handshake
Take into account than neither the CustomerGroup nor the UserGroup can be created alongside the Customer
You can either let them be the default values for your account (by not specifying them), or use their resourceUri property to reference an existing one
| Name | Default Value | Description | Java Type | MIME Type | Encoding | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Optional. Specify which configuration to use. | |||||||||||
To create. Mandatory fields are ID, name and billTo (which has to be a new Address, and not a reference)
XML SampleINCLUDE_ERROR |
Customer | */* | |||||||||
| Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. | |||||||||||
| Optional. The API key for the user | String | */* | UTF-8 | ||||||||
| Optional. Used for sensitive data encryption. Please refer to http://www.handshake-app.com/help/kb/api/api-authentication | String | */* | UTF-8 | ||||||||
| Return Type | Description |
|---|---|
| Customer | the created customer |
Creates a Item on handshake
| Name | Default Value | Description | Java Type | MIME Type | Encoding | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Optional. Specify which configuration to use. | |||||||||||
To create
XML SampleINCLUDE_ERROR |
Item | */* | |||||||||
| Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. | |||||||||||
| Optional. The API key for the user | String | */* | UTF-8 | ||||||||
| Optional. Used for sensitive data encryption. Please refer to http://www.handshake-app.com/help/kb/api/api-authentication | String | */* | UTF-8 | ||||||||
| Return Type | Description |
|---|---|
| Item | the created item |
Creates Items on handshake
| Name | Default Value | Description | Java Type | MIME Type | Encoding | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Optional. Specify which configuration to use. | |||||||||||
| Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. | |||||||||||
| Optional. The API key for the user | String | */* | UTF-8 | ||||||||
| Optional. Used for sensitive data encryption. Please refer to http://www.handshake-app.com/help/kb/api/api-authentication | String | */* | UTF-8 | ||||||||
| Name | Default Value | Description | Java Type |
|---|---|---|---|
To create
XML SampleINCLUDE_ERROR |
List<Item> |
| Return Type | Description |
|---|---|
| List<Item> | a list of the items created (if everything is ok, it should match the provided list) |
Creates a Order on handshake
| Name | Default Value | Description | Java Type | MIME Type | Encoding | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Optional. Specify which configuration to use. | |||||||||||
To create
XML SampleINCLUDE_ERROR XML SampleINCLUDE_ERROR |
Order | */* | |||||||||
| Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. | |||||||||||
| Optional. The API key for the user | String | */* | UTF-8 | ||||||||
| Optional. Used for sensitive data encryption. Please refer to http://www.handshake-app.com/help/kb/api/api-authentication | String | */* | UTF-8 | ||||||||
| Return Type | Description |
|---|---|
| Order | the created order |
Find all customers for the connected account that match the filters
INCLUDE_ERROR
INCLUDE_ERROR
| Name | Default Value | Description | Java Type | MIME Type | Encoding | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Optional. Specify which configuration to use. | |||||||||||
| false | Optional. Set to true if you want to get the full result instead of a paged one. WARNING: This could be slow and raise OutOfMemoryError if the result is too long | boolean | */* | ||||||||
| Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. | |||||||||||
| Optional. The API key for the user | String | */* | UTF-8 | ||||||||
| Optional. Used for sensitive data encryption. Please refer to http://www.handshake-app.com/help/kb/api/api-authentication | String | */* | UTF-8 | ||||||||
| Name | Default Value | Description | Java Type |
|---|---|---|---|
| Optional. Allowed values are: "customerGroup", "userGroup", "ctime" and "mtime" (for creation and modification times, check operators in http://www.handshake-app.com/help/kb/api/web-services-resources-overview) NOTE: filter values refer to the user-defined IDs, and not to the HandShake id | Map<String, String> |
| Return Type | Description |
|---|---|
| Collection<Customer> | a Collection of all the Customers matching the filters |
Get all items for the connected account that match the filters
INCLUDE_ERROR
INCLUDE_ERROR
| Name | Default Value | Description | Java Type | MIME Type | Encoding | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Optional. Specify which configuration to use. | |||||||||||
| false | Optional. Set to true if you want to get the full result instead of a paged one. WARNING: This could be slow and raise OutOfMemoryError if the result is too long | boolean | */* | ||||||||
| Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. | |||||||||||
| Optional. The API key for the user | String | */* | UTF-8 | ||||||||
| Optional. Used for sensitive data encryption. Please refer to http://www.handshake-app.com/help/kb/api/api-authentication | String | */* | UTF-8 | ||||||||
| Name | Default Value | Description | Java Type |
|---|---|---|---|
| Optional. To apply. Allowed filters are category (by Handshake id), manufacturer (by Handshake id), order (to get items from a specific Order), search (only items with a sku or name that match will be returned), sku (you'll get either 1 or 0 results) | Map<String, String> |
| Return Type | Description |
|---|---|
| Collection<Item> | A Collection of items for the connected account that match the filters |
Find all Sales Orders for the connected account that match the filters
INCLUDE_ERROR
INCLUDE_ERROR
| Name | Default Value | Description | Java Type | MIME Type | Encoding | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Optional. Specify which configuration to use. | |||||||||||
| false | Optional. Set to true if you want to get the full result instead of a paged one. WARNING: This could be slow and raise OutOfMemoryError if the result is too long | boolean | */* | ||||||||
| Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. | |||||||||||
| Optional. The API key for the user | String | */* | UTF-8 | ||||||||
| Optional. Used for sensitive data encryption. Please refer to http://www.handshake-app.com/help/kb/api/api-authentication | String | */* | UTF-8 | ||||||||
| Name | Default Value | Description | Java Type |
|---|---|---|---|
| Optional. Allowed values are: "customerID", "status", "ctime" and "mtime" (for creation and modification times, check operators in http://www.handshake-app.com/help/kb/api/web-services-resources-overview) | Map<String, String> |
| Return Type | Description |
|---|---|
| Collection<Order> | a Collection of all the Sales Orders matching the filters |
Get a Address, given its id
| Name | Default Value | Description | Java Type | MIME Type | Encoding | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Optional. Specify which configuration to use. | |||||||||||
Of the Address to get. The uri is Handshake's uid, as returned by the creation method (like '/api/v2/<resource>/<id>')
XML SampleINCLUDE_ERROR |
String | */* | UTF-8 | ||||||||
| Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. | |||||||||||
| Optional. The API key for the user | String | */* | UTF-8 | ||||||||
| Optional. Used for sensitive data encryption. Please refer to http://www.handshake-app.com/help/kb/api/api-authentication | String | */* | UTF-8 | ||||||||
| Return Type | Description |
|---|---|
| Address | the address with the given id or a HandshakeAPIException, if the Address doesn't exist
|
Get a Category, given its id
| Name | Default Value | Description | Java Type | MIME Type | Encoding | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Optional. Specify which configuration to use. | |||||||||||
Of the Category to get. The id is the one specified on creation, and not Handshake's uid
XML SampleINCLUDE_ERROR |
String | */* | UTF-8 | ||||||||
| Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. | |||||||||||
| Optional. The API key for the user | String | */* | UTF-8 | ||||||||
| Optional. Used for sensitive data encryption. Please refer to http://www.handshake-app.com/help/kb/api/api-authentication | String | */* | UTF-8 | ||||||||
| Return Type | Description |
|---|---|
| Category | the category with the given id, or null if it doesn't exist |
Get a Customer, given its resourceUri
| Name | Default Value | Description | Java Type | MIME Type | Encoding | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Optional. Specify which configuration to use. | |||||||||||
Of the Customer to get. The resourceUri is Handshake's uid, as returned by the creation method (like '/api/v2/<resource>/<id>')
XML SampleINCLUDE_ERROR |
String | */* | UTF-8 | ||||||||
| Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. | |||||||||||
| Optional. The API key for the user | String | */* | UTF-8 | ||||||||
| Optional. Used for sensitive data encryption. Please refer to http://www.handshake-app.com/help/kb/api/api-authentication | String | */* | UTF-8 | ||||||||
| Return Type | Description |
|---|---|
| Customer | the customer with the given resourceUri, or null if it doesn't exist |
Get a CustomerGroup, given its id
| Name | Default Value | Description | Java Type | MIME Type | Encoding | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Optional. Specify which configuration to use. | |||||||||||
Of the CustomerGroup to get. The id is the one specified on creation, and not Handshake's uid
XML SampleINCLUDE_ERROR |
String | */* | UTF-8 | ||||||||
| Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. | |||||||||||
| Optional. The API key for the user | String | */* | UTF-8 | ||||||||
| Optional. Used for sensitive data encryption. Please refer to http://www.handshake-app.com/help/kb/api/api-authentication | String | */* | UTF-8 | ||||||||
| Return Type | Description |
|---|---|
| CustomerGroup | the customer group with the given id, or null if it doesn't exist |
Get a Item, given its resourceUri
| Name | Default Value | Description | Java Type | MIME Type | Encoding | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Optional. Specify which configuration to use. | |||||||||||
Of the Item to get. The resourceUri is Handshake's uid, as returned by the creation method (like '/api/v2/<resource>/<id>')
XML SampleINCLUDE_ERROR |
String | */* | UTF-8 | ||||||||
| Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. | |||||||||||
| Optional. The API key for the user | String | */* | UTF-8 | ||||||||
| Optional. Used for sensitive data encryption. Please refer to http://www.handshake-app.com/help/kb/api/api-authentication | String | */* | UTF-8 | ||||||||
| Return Type | Description |
|---|---|
| Item | the item with the given resourceUri, or null if it doesn't exist |
Get a Order, given its resourceUri
| Name | Default Value | Description | Java Type | MIME Type | Encoding | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Optional. Specify which configuration to use. | |||||||||||
Of the Order to get. The uri is Handshake's uid, as returned by the creation method (like '/api/v2/<resource>/<id>')
XML SampleINCLUDE_ERROR |
String | */* | UTF-8 | ||||||||
| Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. | |||||||||||
| Optional. The API key for the user | String | */* | UTF-8 | ||||||||
| Optional. Used for sensitive data encryption. Please refer to http://www.handshake-app.com/help/kb/api/api-authentication | String | */* | UTF-8 | ||||||||
| Return Type | Description |
|---|---|
| Order | the order with the given id or a HandshakeAPIException, if the Order doesn't exist
|
Get a UserGroup, given its id
| Name | Default Value | Description | Java Type | MIME Type | Encoding | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Optional. Specify which configuration to use. | |||||||||||
Of the UserGroup to get. The id is the one specified on creation, and not Handshake's uid
XML SampleINCLUDE_ERROR |
String | */* | UTF-8 | ||||||||
| Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. | |||||||||||
| Optional. The API key for the user | String | */* | UTF-8 | ||||||||
| Optional. Used for sensitive data encryption. Please refer to http://www.handshake-app.com/help/kb/api/api-authentication | String | */* | UTF-8 | ||||||||
| Return Type | Description |
|---|---|
| UserGroup | the user group with the given id, or null if it doesn't exist |
Updates a Address on Handshake, given its resourceUri
| Name | Default Value | Description | Java Type | MIME Type | Encoding | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Optional. Specify which configuration to use. | |||||||||||
| Optional. Of the Address to edit (if you skip this, you should include the resourceUri attribute in the address) | String | */* | UTF-8 | ||||||||
With the changes to update. You should only include those fields that you want to update, specially if referencing existing nested objects
XML SampleINCLUDE_ERROR |
Address | */* | |||||||||
| Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. | |||||||||||
| Optional. The API key for the user | String | */* | UTF-8 | ||||||||
| Optional. Used for sensitive data encryption. Please refer to http://www.handshake-app.com/help/kb/api/api-authentication | String | */* | UTF-8 | ||||||||
| Return Type | Description |
|---|---|
| Address | the updated address |
Updates a Customer on Handshake, given her resourceUri
Take into account than neither the CustomerGroup nor the UserGroup can be created alongside the Customer
You can either let them be the default values for your account (by not specifying them), or use their resourceUri property to reference an existing one
| Name | Default Value | Description | Java Type | MIME Type | Encoding | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Optional. Specify which configuration to use. | |||||||||||
| Optional. Of the Customer to update (if you skip this, you should include the resourceUri attribute in the customer) | String | */* | UTF-8 | ||||||||
| #[payload] | Optional. With the changes to update. You should only include those fields that you want to update, specially if referencing existing nested objects (e.g. try not to include billing address information if it hasn't changed)
XML SampleINCLUDE_ERROR |
Customer | */* | ||||||||
| Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. | |||||||||||
| Optional. The API key for the user | String | */* | UTF-8 | ||||||||
| Optional. Used for sensitive data encryption. Please refer to http://www.handshake-app.com/help/kb/api/api-authentication | String | */* | UTF-8 | ||||||||
| Return Type | Description |
|---|---|
| Customer | the updated customer |
Updates a Item on Handshake, given its resourceUri
| Name | Default Value | Description | Java Type | MIME Type | Encoding | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Optional. Specify which configuration to use. | |||||||||||
| Optional. Of the Item to edit (if you skip this, you should include the resourceUri attribute in the item) | String | */* | UTF-8 | ||||||||
With the changes to update. You should only include those fields that you want to update, specially if referencing existing nested objects
XML SampleINCLUDE_ERROR |
Item | */* | |||||||||
| Connection Parameters This are only required if you didn't specified them at the configuration element. They are also useful for overriding the values of the configurations or even if you need to extract them from the Mule message since they support expression evaluation. | |||||||||||
| Optional. The API key for the user | String | */* | UTF-8 | ||||||||
| Optional. Used for sensitive data encryption. Please refer to http://www.handshake-app.com/help/kb/api/api-authentication | String | */* | UTF-8 | ||||||||
| Return Type | Description |
|---|---|
| Item | the updated item |