Get Dynamically Deployed JARs for Tenant
Get dynamically deployed JARs for a tenant.
Request
Operation Endpoint:
GET/{tenantId}/jarDeployments
Parameter | Required | Description | |
---|---|---|---|
Headers | Authorization |
Yes | Access Token in format Bearer <accessToken> (see
details in Authentication API). |
EnvironmentURL |
Yes | Reltio Environment URL. | |
Path | tenantId |
Yes | tenantId . |
Response
Response Structure:
total
- total number of recordsdata
- array with results for each element returned. Each result will have the following properties:module
- Complete JAR path in S3name
- Name of new deploymentdescription
- Description for the deploymentcreatedBy
- Name of the usercreateTime
- Creation time of the deployment
error
- returned if an error is encountered, contains details of the issue:errorCode
- 5-digit error codeerrorMessage
- error messageerrorData
- details of the error:exception
- exception messagestack
- stack trace
innerError
- details of the error from Reltio API:errorMessage
- Reltio API error messageerrorCode
- Reltio API error codeinnerErrorData
- Reltio API inner error data
warning
- returned if the operation is completed with some minor issuesstatus
- result of the operation; possible values areOK
orfailed
Sample Response JSON:
{
"status":"OK",
"warning":"string",
"data":[
{
"module":"workflow/prod/OnboardingListeners.jar",
"name":"OnboardingCustomListeners",
"description":"Listeners to be used for Onboarding process",
"createdBy":"user1",
"createTime":1234567890
}
],
"total":1
}