Get Vault Tracker Action List
Select
Get the list of vault tracker actions.
Query Parameters
- view string
Default value:
lastHour
Time period selection for which to fetch actions. Accepted values [lastHour, last24Hours, lastWeek, lastMonth, last3Months, last6Months, lastYear, custom]. When custom is selected Actions are filtered based on values provided in other params.
- libraryId int32
Filter by libraryId
- policyId int32
Filter by policyId
- startTime int64
Start time of the time range.
- endTime int64
End time of the time range.
- 200
- 400
- 403
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
vaultTrackerActionList object[]
actionId int32Id of Action
actionTypePossible values: [
NONE
,REGULAR
,RECALL
]Enum for Action Type
actionTypeStr stringAction Type
libraryId int32Id of Library
userId int32Id of User
policyId int32Id of Policy
jobId int32Id of job
initiator stringInitiator of action
sourceLocation object
id int32name stringdestinationLocation object
id int32name stringtransitLocation object
id int32name stringactionStatus stringStatus of action
startTime int64Start time of action
completionTime int64End time of action
recallExpirationTime int64RecallExpirationTime time of action
{
"vaultTrackerActionList": [
{
"actionId": 0,
"actionTypeStr": "string",
"libraryId": 0,
"userId": 0,
"policyId": 0,
"jobId": 0,
"initiator": "string",
"sourceLocation": {
"id": 0,
"name": "string"
},
"destinationLocation": {
"id": 0,
"name": "string"
},
"transitLocation": {
"id": 0,
"name": "string"
},
"actionStatus": "string",
"startTime": 0,
"completionTime": 0,
"recallExpirationTime": 0
}
]
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
- errorMessage string
Tells about the error occured
- errorCode ErrorCode
Possible values: [
NO_ERROR
,INVALID_INPUT
,VALUE_NOT_FOUND
,UNKNOWN_EXCEPTION
,CONNECTION_PROBLEM
,UNKNOWN_SQL_ERROR
,INVALID_USER
,INVALID_OPERATION_TYPE
,INTERNAL_SERVER_PROBLEM
,INSUFFICIENT_USER_PERMISSION_ON_ENTITY
,INVALID_ENTITY_ID
]Error code value
{
"errorMessage": "string",
"errorCode": "NO_ERROR"
}
Forbidden
- application/json
- Schema
- Example (from schema)
Schema
- errorMessage string
Tells about the error occured
- errorCode ErrorCode
Possible values: [
NO_ERROR
,INVALID_INPUT
,VALUE_NOT_FOUND
,UNKNOWN_EXCEPTION
,CONNECTION_PROBLEM
,UNKNOWN_SQL_ERROR
,INVALID_USER
,INVALID_OPERATION_TYPE
,INTERNAL_SERVER_PROBLEM
,INSUFFICIENT_USER_PERMISSION_ON_ENTITY
,INVALID_ENTITY_ID
]Error code value
{
"errorMessage": "string",
"errorCode": "NO_ERROR"
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
Schema
- errorMessage string
Tells about the error occured
- errorCode ErrorCode
Possible values: [
NO_ERROR
,INVALID_INPUT
,VALUE_NOT_FOUND
,UNKNOWN_EXCEPTION
,CONNECTION_PROBLEM
,UNKNOWN_SQL_ERROR
,INVALID_USER
,INVALID_OPERATION_TYPE
,INTERNAL_SERVER_PROBLEM
,INSUFFICIENT_USER_PERMISSION_ON_ENTITY
,INVALID_ENTITY_ID
]Error code value
{
"errorMessage": "string",
"errorCode": "NO_ERROR"
}