Retrieve a Workflow Job Node

get

/api/v2/workflow_job_nodes/{id}/

Make GET request to this resource to retrieve a single workflow job node record containing the following fields:

  • id: Database ID for this workflow job node. (integer)
  • type: Data type for this workflow job node. (choice)
  • url: URL for this workflow job node. (string)
  • related: Data structure with URLs of related resources. (object)
  • summary_fields: Data structure with name/description for related resources. The output for some objects may be limited for performance reasons. (object)
  • created: Timestamp when this workflow job node was created. (datetime)
  • modified: Timestamp when this workflow job node was last modified. (datetime)
  • extra_data: (json)
  • inventory: Inventory applied as a prompt, assuming job template prompts for inventory (id)
  • scm_branch: (string)
  • job_type: (choice)
    • None: ---------
    • "": ---------
    • run: Run
    • check: Check
  • job_tags: (string)
  • skip_tags: (string)
  • limit: (string)
  • diff_mode: (boolean)
  • verbosity: (choice)
    • None: ---------
    • 0: 0 (Normal)
    • 1: 1 (Verbose)
    • 2: 2 (More Verbose)
    • 3: 3 (Debug)
    • 4: 4 (Connection Debug)
    • 5: 5 (WinRM Debug)
  • execution_environment: The container image to be used for execution. (id)
  • forks: (integer)
  • job_slice_count: (integer)
  • timeout: (integer)
  • job: (id)
  • workflow_job: (id)
  • unified_job_template: (id)
  • success_nodes: (field)
  • failure_nodes: (field)
  • always_nodes: (field)
  • all_parents_must_converge: If enabled then the node will only run if all of the parent nodes have met the criteria to reach this node (boolean)
  • do_not_run: Indicates that a job will not be created when True. Workflow runtime semantics will mark this True if the node is in a path that will decidedly not be ran. A value of False means the node may not run. (boolean)
  • identifier: An identifier coresponding to the workflow job template node that this node was created from. (string)

Request

Supported Media Types
Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Body ()
Root Schema : WorkflowJobNodeDetail
Type: object
Show Source
Nested Schema : always_nodes
Type: array
Read Only: true
Unique Items Required: true
Show Source
Nested Schema : Extra data
Type: object
Title: Extra data
Nested Schema : failure_nodes
Type: array
Read Only: true
Unique Items Required: true
Show Source
Nested Schema : success_nodes
Type: array
Read Only: true
Unique Items Required: true
Show Source
Back to Top