Retrieve diagnostic tree node data

post

/custom-actions/diagnosticTreeNode

Returns the diagnostic tree node details for given matching criteria.

Request

There are no request parameters for this operation.

Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: object
Show Source
  • The tree depth to traverse. If not provided, the complete depth is returned provided the response size is within configured size.
  • The diagnostic log file identifier.
  • filterMap
    Additional Properties Allowed: additionalProperties
    Dynamic filter key-value pairs. The keys may vary depending on use case. These are used as matching criteria. Only node details that satisfy these matching criterias are returned.
  • nodeIds
    The list of node IDs to traverse from. This is the parent node from where the logic will traverse down. If nodeIds are not used, the root (bulk plan process node) is used as the parent.
Nested Schema : filterMap
Type: object
Additional Properties Allowed
Show Source
Dynamic filter key-value pairs. The keys may vary depending on use case. These are used as matching criteria. Only node details that satisfy these matching criterias are returned.
Example:
{
    "status":[
        "FAILURE",
        "SUCCESS"
    ],
    "processName":"Bulk Plan",
    "ORDER_RELEASE":[
        "DOMAIN.ORDER_RELEASE_GID"
    ],
    "ITINERARY":[
        "DOMAIN.ITINERARY_GID"
    ]
}
Nested Schema : nodeIds
Type: array
The list of node IDs to traverse from. This is the parent node from where the logic will traverse down. If nodeIds are not used, the root (bulk plan process node) is used as the parent.
Show Source
Nested Schema : additionalProperties
Match One Schema
Show Source
Nested Schema : type
Type: array
Show Source
Back to Top

Response

Supported Media Types

200 Response

The successful response.
Body ()
Root Schema : DiagnosticTreeNodeResponse
Type: object
Show Source
Nested Schema : TreeNode
Type: object
Show Source
Nested Schema : childIds
Type: array
The list of child node IDs.
Show Source
Nested Schema : children
Type: array
The recursive child nodes.
Show Source
Nested Schema : entities
Type: object
Additional Properties Allowed
Show Source
The dynamic entity map keys, like ORDER_RELEASE, BULK_PLAN, etc.
Nested Schema : exportFiles
Type: array
The list of file names like conoptData1.xml, conoptData2.xml, etc.
Show Source
Nested Schema : nonDBEntities
Type: array
Show Source
Nested Schema : reasonCodeList
Type: array
Show Source
Nested Schema : remarks
Type: array
Show Source
Nested Schema : additionalProperties
Type: array
Show Source

400 Response

The default response.
Body ()
Root Schema : errorResponse400
Type: object
Show Source

404 Response

The default response.
Body ()
Root Schema : errorResponse404
Type: object
Show Source
Back to Top