Aller au contenu principal

Find WorkflowExecutions

GET 

/projects/:projectId/workflowexecutions

This operation allows to get a page of WorkflowExecutions

Request

Path Parameters

    projectId uuidrequired

    Possible values: Value must match regular expression [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}

    Project Id

Query Parameters

    limit int32

    Possible values: <= 100

    Default value: 20

    Limit of the size of the page

    offset int32

    Default value: 0

    Offset of the page

Responses

ok

Response Headers

  • X-Total-Count

    integer

    number total of items

  • X-Result-Count

    integer

    number of returned items

Schema

  • Array [

  • workflowExecutionId uuid

    Possible values: Value must match regular expression [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}

    workflow execution id

    workflowName string

    workflow name

    workflowRevision string

    workflow revision

    workflowDescription string

    workflow description

    currentStepExecution uuid

    Possible values: Value must match regular expression [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}

    current step execution id

    startDateTime date-time

    start time of the worklow execution

    creationDateTime date-time

    creation time of the worklow execution

    endDateTime date-time

    end time of the worklow execution

    updateDateTime date-time

    last update time of the worklow execution

    status string

    Possible values: [CREATED, IN_PROGRESS, SUCCEEDED, FAILED, CLEARED]

    workflow execution status

    context string

    workflow execution context

    exitMessage string

    workflow execution exit message

    exitCode string

    workflow execution exit code

    stepExecutions

    object[]

    list of step executions associated to the workflow execution

  • Array [

  • stepExecutionId uuid

    Possible values: Value must match regular expression [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}

    step execution id

    stepName string

    step execution name

    stepDescription string

    step execution description

    stepType string

    Possible values: [NOMINAL, COMPENSATION]

    step execution type (nominal or compensated)

    startDateTime date-time

    start time of the step execution

    creationDateTime date-time

    creation time of the step execution

    endDateTime date-time

    end time of the step execution

    updateDateTime date-time

    last update time of the step execution

    status string

    Possible values: [CREATED, IN_PROGRESS, SUCCEEDED, FAILED]

    step execution status

    context string

    step execution context

    exitMessage string

    step execution exit message

    exitCode string

    step execution exit code

  • ]

  • workflowExecutionParameters

    object[]

    list of input parameters associated to the workflow execution

  • Array [

  • name string

    workflow execution parameter name

    type string

    workflow execution type name

    value string

    workflow execution value name

  • ]

  • ]

Loading...