Get Actions Collection
API to get a collection of actions
Returns collections of registered actions for a specified tenant.
Request:
GET {lifecycleServiceURL}/api/{tenantId}/actions
Name | Required | Details | |
---|---|---|---|
Headers | Authorization |
Yes | Information about authentication access token in format "Bearer
<accessToken> " (see details in Authentication API ). |
Content-Type
|
Yes | Should be "Content-Type: application/json ".
|
Response:
Array with objects representing registered actions.
Request
GET {lifecycleServiceURL}/api/{tenantId}
Headers: Authorization: Bearer 204938ca-2cf7-44b0-b11a-1b4c59984512, Content-Type:application/json
Response
[{
"name": "SimpleLifeCycleAction",
"type": "com.reltio.lifecycle.actions.qa.SimpleLifeCycleAction",
"module": "life-cycle-actions/qa/test.handlers-1.1.0-QA.jar",
"state": "active",
"description": "Simple Life Cycle Action Handler appending Hello World to First
Name ",
"updatedBy": "user",
"updatedTime": 1440077669259
},
{
"name": "NpiCleanseAction",
"type": "com.reltio.lifecycle.actions.test.NpiCleanseAction",
"module": "life-cycle-actions/qa/test.handlers-1.1.0-QA.jar",
"state": "active",
"description": "Life Cycle Actions for cleansing NPI attribute",
"updatedBy": "user",
"updatedTime": 1440077669259
}
]