• /
  • EnglishEspañolFrançais日本語한국어Português
  • Log inStart now

WorkflowRunInfo

This API retrieves information about a specific workflow run, including its status and log URL.

Input parameters

Parameter

Type

Required

Description

account.id

Number

Yes

Your account ID.

runId

String

Yes

The unique identifier of the workflow run. Obtained from StartWorkflowRun API.

Sample request

Use the Query Builder to create and edit a workflow. See NerdGraph API explorer.

{
actor {
account(id: 11933347) {
workflowAutomation {
workflowRunInfo(runId: "8911c7e4-5a1f-4316-90c8-67adde72dd1c") {
logUrl
status
}
}
}
}
}

Sample response

The query returns:

  • logUrl: URL to view the workflow execution logs
  • status: The current status of the workflow run
Copyright © 2026 New Relic Inc.

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.