For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Open sourceSupportFAQsDocs Home
DocumentationAPI ReferenceRelease notes
DocumentationAPI ReferenceRelease notes
  • Introduction
    • Overview
    • Authentication
  • Guides
    • Integration API routes
    • Operations Manager search APIs
    • Search API
    • URL query parameters
    • Use query parameters in API requests
  • Reference
        • POSTAdd group to workflow
        • POSTAdd workflow
        • POSTCalculate workflow schemas
        • DELDelete all groups for a workflow
        • DELDelete workflow
        • POSTExport workflow
        • GETGet task details
        • GETGet tasks
        • POSTImport workflow
        • GETList groups for a workflow
        • PUTOverwrite groups for a workflow
        • DELRemove a group from a workflow
        • POSTRename workflow
LogoLogo
Open sourceSupportFAQsDocs Home
ReferenceWorkflow Builder

Get task details

GET
http://localhost:3000/workflow_builder/getTaskDetails/:app/:task
GET
/workflow_builder/getTaskDetails/:app/:task
$curl http://localhost:3000/workflow_builder/getTaskDetails/app/task \
> -u "<username>:<password>"
1{
2 "type": "string",
3 "view": "string",
4 "groups": [
5 "string"
6 ]
7}
Returns a Task's details.
Was this page helpful?
Previous

Get tasks

Next
Built with

Authentication

AuthorizationBasic

Basic authentication of the form Basic <base64(username:password)>.

Path parameters

appstringRequired

Application’s name (export field in model)

taskstringRequiredformat: "^[0-9a-f]{1,4}$"

Task’s id (hex)

Response

Detailed Task.
object
OR
object
OR
object

Errors

500
Internal Server Error