For the complete documentation index, see llms.txt. This page is also available as Markdown.

Default module

Get Executions

get

This endpoint returns the total count of executions for a specified flow, user or connector. It provides a simple way to monitor and retrieve the number of times a particular flow has been executed. Useful for tracking flow usage, analyzing performance metrics, and managing flow lifecycle events.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
startstringOptional

Start of counting time frame (inclusive), schema YYYY-MM-DD, defaults to one month ago

Example: 2024-05-01
endstringOptional

End of counting time frame (inclusive), schema YYYY-MM-DD, defaults to today

Example: 2024-05-31
groupbystringOptional

By which value counts should be grouped by. Supports 'user', 'flow', and ' component', defaults to 'user'

Example: user
Responses
200

Response when grouping by user

application/json
get
/icenter/executions

Get Logs

get

The Get Logs endpoint allows you to retrieve all available logs from the system. You can filter the results by flow, by step, or choose to only display error logs. This makes it possible to set up monitoring scenarios, for example by creating a flow that automatically notifies you whenever new errors occur.

Query parameters
filter[flowId]stringOptionalExample: {flowId}
filter[stepId]stringOptionalExample: {stepId}
filter[tenant]stringRequiredExample: {tenantId)
showErrorsstringOptionalExample: true
Responses
200Success
application/json
objectOptional
get
/logs
200Success

Incoming Webhook

post

Within your system’s webhook functionality, create and configure a webhook to send relevant data as a POST request to the webhook url using the user’s flow ID. You can send payload data via POST request using JSON in the request body, which will then be processed in the flow.

Path parameters
flowIdstringRequired
Responses
200Success
application/json
objectOptional
post
/webhooks/{flowId}
200Success

Last updated