REST Connector
If you use the REST Connector, ensure you do not have any instance variable named in the list below:
body
,url
,method
,headers
,authentication
,queryParameters
,connectionTimeoutInSeconds
The REST Connector is an outbound protocol Connector that allows you to make a request to a REST API and use the response in the next steps of your process.
Create a REST Connector task
To use a REST Connector in your process, either change the type of existing task using the wrench-shaped Change type context menu, or create a new Connector task by using the Append Connector context menu. Follow our guide on using Connectors to learn more.
Make your REST Connector executable
To make the REST Connector executable, choose the required authentication type and fill out the mandatory fields highlighted in red in the properties panel:
All the mandatory and non-mandatory fields will be covered in the upcoming sections. Depending on the authentication selection you make, more fields might be required. We will also cover this in the next section.
Authentication
You can choose among the available authentication type according to your authentication requirements.
REST Connector (None)
Click None in the Authentication section. No extra authentication configuration is required; you can jump to the next section.
REST Connector (Basic)
Create a new Connector secret
We advise you to keep your Password safe and avoid exposing it in the BPMN xml
file by creating a secret:
- Follow our guide for creating secrets.
- Name your secret (i.e
REST_BASIC_SECRET
) so you can reference it later in the Connector.
Configure Basic Authentication
Select the REST Connector and fill out the following properties under the Authentication section:
- Click Basic in the Authentication section.
- Set Username (i.e.
{{secrets.YOUR_USERNAME}}
). - Set Password to the secret you created (i.e.
{{secrets.REST_BASIC_SECRET}}
).
REST Connector (Bearer Token)
Create a new Connector secret
We advise you to keep your Bearer token safe and avoid exposing it in the BPMN xml
file by creating a secret:
- Follow our guide for creating secrets.
- Name your secret (i.e
REST_BEARER_TOKEN
) so you can reference it later in the Connector.
Configure the Bearer token
Select the REST Connector and fill out the following properties under the Authentication section:
- Click Bearer token in the Authentication section.
- Set Bearer to the secret you created (i.e.
{{secrets.REST_BEARER_TOKEN}}
).
REST Connector (OAuth token)
Create a new Connector secret
We advise you to keep your OAUTH_TOKEN_ENDPOINT safe and avoid exposing it in the BPMN xml
file by creating a secret:
- Follow our guide for creating secrets.
- Name your secret (i.e
OAUTH_TOKEN_ENDPOINT
) so you can reference it later in the Connector.
Configure the OAuth token
Select the REST Connector and fill out the following properties under the Authentication section:
- Click OAuth 2.0 in the Authentication section.
- Set OAuth token endpoint to the secret you created (i.e.
{{secrets.OAUTH_TOKEN_ENDPOINT}}
). - Set Client ID to the secret you created (i.e.
{{secrets.CLIENT_ID}}
). - Set Client secret to the secret you created (i.e.
{{secrets.CLIENT_SECRET}}
). - (Optional) Set Scopes (i.e.
read:clients
). Depending on the OAuth provider you're using, this may or may not be required. - Set Audience to the secret you created (i.e.
{{secrets.AUDIENCE}}
). It is an optional field. Depending on the OAuth provider you're using, you should fill this field or not. - Choose Client authentication from the dropdown menu (i.e.
Send client credentials in body
).
Find more information about the OAuth client credentials flow at the RFC reference.
Request
Under the HTTP Endpoint section, select the desired Method and fill the URL with your desired REST API.
Query parameters
The Query parameters field can be configured using the FEEL Map data type.
= {
q: "Berlin",
appid: "{{secrets.OPEN_WEATHER_MAP_API_KEY}}",
units: "metric",
lang:"en"
}
Secrets are not like regular variables and must be wrapped in double quotes ("
) when used in an expression.
HTTP Headers
Similarly to the Query Parameters, the HTTP headers can be specified using the FEEL Map data type.
= {
Origin: "https://modeler.cloud.camunda.io/"
}
If you do not set the Content-Type
header in your HTTP headers, the Connector will automatically set the Content-Type
to application/json
.
Request body
When you are making a PUT, POST, or PATCH request, you might need to provide a body. You can provide a body for your request under the Payload section in the Request body field.
Secrets are currently not supported in the body of a REST Connector.
= {
"temp": 25,
"pressure": 1013,
"humidity": 44,
"temp_min": 16,
"temp_max": 30
}
Connection timeout
To set connection timeout in your request, set it in seconds in the Connection timeout section.
This is not a required field, with a default value of 20 seconds. To set an infinite timeout, set this value to 0
.
Response
The HTTP response will be available in a temporary local response
variable. This variable can be mapped to the process by specifying the Result variable.
The following fields are available in the response
variable:
- status: Response status
- body: Response body of your request
- headers: Response headers
Output mapping
Result variable
You can export a complete response from an HTTP REST call into a dedicated variable accessible anywhere in a process.
To do so, just input a variable name in the Result variable field. It is highly recommended to use a unique name to avoid
variables being overwritten, for example currentWeather
.
Result expression
Additionally, you can choose to unpack the content of your response
into multiple process variables using the Result expression, which is a FEEL Context Expression.
= {
actual_temp: response.body.main.temp,
feel_temp: response.body.main.feels_like,
weather: response.body.weather[1].main
}