Azure GetRun

Azure GetRun

Certified

Get an Azure Logic App workflow run

Retrieves status, timings, error details, and outputs for a Logic App workflow run.

yaml
type: io.kestra.plugin.azure.logicapps.GetRun

Get run

yaml
id: azure_logic_apps_get_run
namespace: company.team

tasks:
  - id: get_run
    type: io.kestra.plugin.azure.logicapps.GetRun
    tenantId: "{{ secret('AZURE_TENANT_ID') }}"
    clientId: "{{ secret('AZURE_CLIENT_ID') }}"
    clientSecret: "{{ secret('AZURE_CLIENT_SECRET') }}"
    subscriptionId: "{{ secret('AZURE_SUBSCRIPTION_ID') }}"
    resourceGroupName: my-resource-group
    workflowName: my-logic-app
    runId: "08585287571846573488044702123CU00"
Properties

Resource group name

Azure resource group containing the Logic App workflow.

Run ID

Name or ID of the workflow run to retrieve.

Subscription ID

Azure subscription GUID that owns the Logic App workflow.

Azure AD tenant ID (GUID)

Workflow name

Name of the Azure Logic App workflow.

Client ID of the Azure AD application

Application (client) ID used for service principal authentication.

Client secret for the Azure AD application

Secret value associated with the client ID; store in a Kestra secret.

PEM-encoded certificate content for client authentication

PEM text for certificate-based auth; alternative to clientSecret.

Reference (ref) of the pluginDefaults to apply to this task.

Workflow run

Workflow run details returned by Azure Logic Apps.

Definitions
codestring

Code

Result code reported by Azure Logic Apps.

correlationIdstring

Correlation ID

Correlation ID associated with the workflow run.

endTimestring
Formatdate-time

End time

Workflow run end time.

errorobject

Error

Error payload returned by Azure Logic Apps, when available.

idstring

Run ID

Azure resource ID of the workflow run.

namestring

Run name

Name of the workflow run.

outputsobject

Outputs

Workflow run outputs keyed by output name.

startTimestring
Formatdate-time

Start time

Workflow run start time.

statusstring

Status

Current status of the workflow run.