Accelerate the Value of Data

Get Dynamically Deployed JARs

Request

Operation Endpoint:

GET {workflowPath}/workflow/jarDeployments
Table 1. Parameters
Name Required Details
Headers Authorization Yes Access Token in format "Bearer <accessToken>" (see details in Authentication API).
EnvironmentURL Yes Reltio Environment URL.

Response

Response Structure:

  • total - total number of records
  • data - array with results for each element returned. Each result will have the following properties:
    • name - name of the new deployment
    • module - complete JAR path in S3
    • description - description of the deployment
    • createdBy - name of the user
    • createTime - creation time of the deployment
  • error - returned if an error is encountered, contains details of the issue:
    • errorCode - 5-digit error code
    • errorMessage - error message
    • errorData - details of the error:
      • exception - exception message
      • stack - stack trace
    • innerError - details of the error from Reltio API:
      • errorMessage - Reltio API error message
      • errorCode - Reltio API error code
      • innerErrorData - Reltio API inner error data
  • warning - returned if the operation is completed with some minor issues
  • status - result of the operation; possible values are "OK" or "failed"

Sample Response JSON:

{
  "total": 2,
  "status": "OK",
  "data": [{
   
            "name":"OnboardingCustomListeners",
   
            "module":"workflow/prod/OnboardingListeners.jar",
   
            "description":"Listeners to be used for Onboarding process",
   
            "createdBy":"user1",
    "createTime":1234567890,
   
            "status":"OK"
  },
  {
   
            "name":"SomeServiceTaskAndListeners",
   
            "module":"workflow/prod/SomeServiceTaskAndListeners.jar",
   
            "createdBy":"user2",
    "createTime":1234567890,
   
            "status":"OK"
  }]
  }