REST Trigger
Learn how users can take advantage of the REST Trigger in order to create APIs that meet standards and quickly define which methods your endpoint will answer to.
When a pipeline is configured and published with REST Trigger, a REST endpoint is automatically created. You can visualize this endpoint after the deployment - just click on the pipeline card in the Run screen.
With this trigger, you can create APIs that meet the REST standard and quickly define which methods your endpoint will answer to.
Take a look at the configuration parameters of the trigger:
- Methods: configures the HTTP verbs to be supported by the endpoint after the deployment. If no value is informed, the default value will be considered: POST, PUT, GET, PATCH, DELETE and OPTIONS.
- Maximum Timeout: limit time for the pipeline to process information before returning a response (standard = 30000, limit = 300000). In milliseconds. If the processing takes longer than the parameter determination, the request is ended and returns status-code 500, but with no body.
- Maximum Request Size: maximum size of the payload (in MB). The maximum size of the configurable payload is 5MB. If the payload sent by the endpoint consumer goes beyond the limit, a message will be returned informing that the maximum size has been overcome and a status-code 413 with the following message:
{
"message": "Request size limit exceeded"
}
- Response Headers: headers to be returned by the endpoint when processing in the pipeline is complete. This parameter cannot be left empty and accepts Double Braces. Special characters should not be used in keys, due to possible failures in proxies and gateways.
- Add Cross-Origin Resource Sharing (CORS) - CORS Headers: add the CORS headers to be returned by the endpoint when processing in the pipeline is complete. Cross-Origin Resource Sharing (CORS) is a mechanism that lets you tell the browser which origins are allowed to make requests. This parameter defines CORS specifically for the pipeline and its constraints. To configure globally rather than individually on each pipeline see the CORS Global article.
Important: we use a comma to enter multiple values in a header, but we don't add a space before or after the comma. Special characters should not be used in keys, due to possible failures in proxies and gateways.
- External API: if the option is enabled, the API is published in an external gateway.
- Internal API: if the option is enabled, the API is published in an internal gateway. The pipeline can have both the External API and Internal API options simultaneously enabled.
- mTLS enabled API: if the option is enabled, the API is published to a gateway dedicated to APIs with mTLS enabled by default. In this case, the access host will be different from the others. The pipeline can have both the External API and Internal API options enabled at the same time, but it is recommended to leave them inactive. This parameter does not support API Key, JWT, or Basic Auth. To use it in your realm, it is necessary to make a request via chat and we will send you the necessary information to install this service.
- API Key: if the option is enabled, the endpoint can be consumed only if an API key is previously configured in the Digibee Integration Platform.
- Token JWT: if the option is enabled, the endpoint can be consumed only if a JWT token previously generated by another endpoint with this capacity is sent. Read the article about JWT implementation to have more details.
- Basic Auth: if the option is active, the endpoint can only be consumed if a Basic Auth setting is present in the request. This setting can be registered beforehand through the Consumers page in the Digibee Integration Platform.
Currently, the Basic Auth feature is only available in Beta phase. To learn more about this, read the article Beta program.
- Additional API Routes: if the option is enabled, the trigger allows you to configure new routes. See more about this parameter in the section below.
- Remove Digibee Prefix from Route: this option is available only when External API and Internal API parameters are disabled, and mTLS enabled API and Additional API Routes parameters are enabled. Set this option to remove the default Digibee route prefix "/pipeline/{realm}/v{n}" from the pipeline route. Learn more about the Remove Digibee Prefix from Route parameter in the section below.
- Routes: displayed only when the Additional API Routes parameter is enabled. Here you can define the endpoint additional routes.
- Rate Limit: if the option is activated, a rate limiting configuration will be applied on the API gateway. This option is only available if API Key or Basic Auth is active. See more about the Rate Limit parameter in the section below.
- Limit by: defines the entity to which the limits will be applied. Options: API.
- Aggregate by: defines the entity for aggregating the limits. Options: Consumer and Credential (API Key, Basic Auth).
- Options: defines the limit of requests that can be made within a time interval.
- Interval: defines the time interval for the limit of requests. Options: second, minute, hour, day, and month.
- Limit: defines the maximum number of requests that users can make in the specified time interval.
- Allow Redelivery Of Messages: if the option is enabled, it allows the message to be resend if the Pipeline Engine fails. Read the article about Pipeline Engine to have more details.
Important: There is a global configuration parameter that obliges all the pipelines to be published with at least the API Key or Basic Auth options enabled.
As previously explained, this option is to configure new routes in the endpoint.
When a pipeline is deployed, an URL is automatically created. However, you can customize the route according to your convenience. It also includes receiving parameters through the route.
After the pipeline's deployment, the URL will get the following structure:
TEST:
https://test.godigibee.io/pipeline/{realm}/v{n}/{pipeline-name}
or PROD:
https://api.godigibee.io/pipeline/{realm}/v{n}/{pipeline-name}
- {realm}: corresponds to Realm.
- v{n}: pipeline's major version.
- {pipeline-name}: name given to the pipeline.
Let’s say you’ve created the product-list pipeline. Considering the comment above, its URL would have the following appearance:
https://test.godigibee.io/pipeline/realm/v1/product-list
Now, see how to configure a static route for this case.

With the configurations applied and the pipeline deployed, you will get a new URL:
https://test.godigibee.io/pipeline/realm/v1/products
Using as example the same pipeline previously configured, see how to configure the route:

With the configurations applied and the pipeline deployed, you will get a new URL:
https://test.godigibee.io/pipeline/realm/v1/products/:id
In this case, the endpoint consumer can send a request with the id of a product and return information about it only. Example of URL in the request:
https://test.godigibee.io/pipeline/realm/v1/products/10156
To use this value sent by the route inside the pipeline, go for the Double Braces syntax:
{{ message.queryAndPath.id }}
As previously explained, this option is recommended for removing the default Digibee route prefix from pipeline route.
Let’s say you’ve created a pipeline and set the trigger as follows:
.png?alt=media&token=029caba7-3811-4682-a5f2-3e32b3e2a46f)
With the configurations applied and the pipeline deployed, you will get a new URL:
https://test.godigibee.io/products
Important: when removing the default prefix and setting the pipeline route through the Additional API Routes parameter, be careful not to set an existing pipeline route used by other pipelines. In case you have more than one pipeline major version, it’s also important to keep in mind that the pipeline route versioning must be done by the user due the absence of a versioning path parameter. For example: /pipeline/realm/v1/.
When creating APIs, we usually want to limit the number of API requests users can make in a given time interval.
This action can be performed by activating the Rate Limit option and applying the following settings:

Important: if the API has additional paths, the limit is shared among all paths. To apply the rate limit settings, the API must be configured with an API key or Basic Auth so that the Aggregate by parameter can be used by groups of credentials if the Consumer option is selected, or by an individual credential if the Credential (API Key, Basic Auth) option is selected.
If multiple interval parameters are configured with repeating values, only one of these values is considered. It’s also necessary that a value greater than zero be informed for the Limit parameter.
If the rate limiting options aren't set correctly, they'll be ignored and a warning log will be issued. You can view this log on the Pipeline Logs page.
See below how the trigger behaves in specific situations and what its respective configuration is.
See how to configure a pipeline with REST Trigger to return information inside the pipeline in JSON format and how the return must be treated specifically for this trigger.
First of all, create a new pipeline and configure the trigger. The configuration can be made in the following way:

With the configurations above, you determine that:
- the endpoint works with the verb GET only.
Besides, you determine that the API is external and doesn’t need a token for the communication.
Important: this example works for educational matters only. In some cases you can’t let the endpoint open for security reasons.
Now see how to configure a MOCK in the pipeline so it becomes the data provider that the endpoint returns in the end. Place the indicated component, connect it to the trigger and configure it with the following JSON:
{
"data": {
"products": [
{
"name": "Samsung 4k Q60T 55",
"price": 3278.99
},
{
"name": "Samsung galaxy S20 128GB",
"price": 3698.99
}
]
}
}
After doing that, the endpoint will already automatically return the JSON defined above as the endpoint response.
After the deployment, take the generated url and send a GET-type request. The endpoint must return the status-code 200 and the response body must have the same appearance of the JSON we previously defined inside the MOCK component.
See how to configure a pipeline with REST Trigger to return information inside the pipeline in JSON format and how the return must be treated specifically for this trigger.
First of all, create a new pipeline and configure the trigger. The configuration can be made in the following way:

With the configurations above, you determine that:
- the endpoint works with the verb POST only.
Besides, you determine that the API is external and doesn’t need a token for the communication.
Important: this example works for educational matters only. In some cases you can’t let the endpoint open for security reasons.
Now see how to configure a MOCK in the pipeline so it changes the received data and the endpoint will return in the end. Place the indicated component, connect it to the trigger and configure it with the following JSON:
{
"data": {
"products": [
{
"name": "Samsung 4k Q60T 55",
"price": 3278.99
},
{
"name": "Samsung galaxy S20 128GB",
"price": 3698.99
},
{{ message.body.product }}
]
}
}
With this configuration, a payload with a new product will be received and it will be added to the array. After that, the pipeline will return the array with the new added product to the consumer.
After the deployment, take the generated url and send a POST-type request with the following body:
{
"product": {
"name": "Samsung galaxy note 10 256GB",
"price": 2879.99
}
}
The endpoint must return the status-code 200 and the response body must have the following appearance:
{
"data": {
"products": [
{
"name": "Samsung 4k Q60T 55",
"price": 3278.99
},
{
"name": "Samsung galaxy S20 128GB",
"price": 3698.99
},
{
"name": "Samsung galaxy note 10 256GB",
"price": 2879.99
}
]
}
}
Everytime you make a request to the created endpoint, the structure of the message that the trigger delivers to the pipeline is always the same and follows this pattern:
{
"body": "{}",
"form": {},
"headers": {
"Host": "pipeline-trigger-http:8100",
"Connection": "keep-alive",
"X-Forwarded-For": "***",
"X-Forwarded-Proto": "http",
"X-Forwarded-Host": "***",
"my-custom-header": "a"
},
"queryAndPath": {
"id": "1"
},
"method": "POST",
"contentType": "application/json",
"path": "/pipeline/digibee/v1/trigger-rest/1"
}
- body: content to be sent in the request payload to be transformed into string in this field.
- form: if the form-data is used in the request, the sent data is delivered in this field.
- headers: the headers sent in the request are delivered in this field, but some are automatically filled according to the tool used to make the request.
- queryAndPath: the query and path parameters provided in the URL are delivered in this field.
- method: HTTP method used in the request to be delivered in this field.
- contentType: when informed in the request, the Content-type value is repassed to the pipeline inside this field.
- path: the path used in the URL in the request is repassed to this field.
Last modified 28d ago