List Impacted Assets
GET/apm/api/v1/action-plan/:action-plan-id/impacted-assets
List of impacted assets ordered by asset ID asc. Offset for pagination. You must have ActionPlanOverview_READ permission to access this endpoint. Rate limit 2/sec.
Request
Path Parameters
action-plan-id stringrequired
action plan id
Example: action plan id
Query Parameters
limit integer
page limit, default 100
Example: 10
next_page_token string
page token
Example: <next page token>
Header Parameters
x-redlock-auth stringrequired
Authorize using Authentication token
Example: jwt token
Responses
- 200
- 400
- 401
- 403
- 404
- 429
OK
- application/json; charset=UTF-8
- Schema
- Example (from schema)
Schema
- Array [
- ]
lastRunTs int64
id string
totalCount int64
value object[]
name string
unifiedAssetId string
accountId string
accountName string
externalAssetId string
regionId string
assetType string
cloudType string
resourceDetailsAvailable boolean
isAssetAccessible boolean
nextPageToken string
{
"lastRunTs": 0,
"id": "string",
"totalCount": 0,
"value": [
{
"name": "string",
"unifiedAssetId": "string",
"accountId": "string",
"accountName": "string",
"externalAssetId": "string",
"regionId": "string",
"assetType": "string",
"cloudType": "string",
"resourceDetailsAvailable": true,
"isAssetAccessible": true
}
],
"nextPageToken": "string"
}
Bad Request
- application/json; charset=UTF-8
- Schema
- Example (from schema)
Schema
error object
code string
message string
target string
{
"error": {
"code": "string",
"message": "string",
"target": "string"
}
}
Unauthorized
Forbidden
Action Plan ID not found
Too Many Requests
Loading...