For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Open sourceSupportFAQsDocs Home
DocumentationAPI ReferenceRelease notes
DocumentationAPI ReferenceRelease notes
  • Introduction
    • Overview
    • Authentication
  • Guides
    • Integration API routes
    • Operations Manager search APIs
    • Search API
    • URL query parameters
    • Use query parameters in API requests
  • Reference
        • POSTCancel an action execution
        • POSTCreate a new instance group
        • POSTCreate a new resource model
        • DELDelete a resource model
        • DELDelete an instance group
        • GETExport a resource instance
        • GETExport a resource model
        • GETGet a resource model based on ID
        • GETGet action execution record
        • GETGet instance group
        • GETGet multiple instance groups
        • GETGet resource instance
        • POSTImport a resource model
        • POSTImport an instance into a resource
        • POSTPerforms edits to a resource model
        • POSTRun a resource action
        • POSTRun a resource action against multiple instances
        • GETSearch resource action history documents
        • GETSearch resource instances
        • GETSearch resource models
        • PATCHUpdate a instance group
        • PUTUpdate a resource model
        • PUTUpdate resource instance
        • POSTValidate the actions defined on a resource model
LogoLogo
Open sourceSupportFAQsDocs Home
ReferenceLifecycle Manager

Get action execution record

GET
http://localhost:3000/lifecycle-manager/action-executions/:id
GET
/lifecycle-manager/action-executions/:id
$curl http://localhost:3000/lifecycle-manager/action-executions/id \
> -u "<username>:<password>"
1{
2 "data": {
3 "modelName": "string",
4 "executionType": "individual",
5 "instanceName": "string",
6 "actionId": null,
7 "actionName": "string",
8 "actionType": null,
9 "jobId": "62a1f3d2ebedfc54e6e0065c",
10 "startTime": "2024-01-15T09:30:00Z",
11 "endTime": "2024-01-15T09:30:00Z",
12 "progress": {},
13 "status": "running",
14 "errors": [
15 {
16 "message": "string",
17 "origin": "preTransformation",
18 "timestamp": "2024-01-15T09:30:00Z",
19 "metadata": null,
20 "stepId": "0a2f"
21 }
22 ],
23 "initiatorName": "string",
24 "initialInstanceData": {},
25 "finalInstanceData": {}
26 },
27 "message": "Successfully created the requested item",
28 "metadata": {}
29}
Returns the action execution record.
Was this page helpful?
Previous

Get instance group

Next
Built with

Authentication

AuthorizationBasic

Basic authentication of the form Basic <base64(username:password)>.

Path parameters

idstringRequiredformat: "^[0-9a-fA-F]{24}$"
id

Response

response
dataobject

Errors

500
Internal Server Error