Get Eligible Actions for Assets
post
/rest/v19/assets/eligibleActions
This operation retrieves all eligible actions for assets.
Request
Supported Media Types
- application/json
Root Schema : AssetKeysRequestBean
Type:
Show Source
object-
assetKeys:
array List of asset keys
Title:
List of asset keys -
transactionDate:
string()
Title:
Transaction date
Response
Supported Media Types
- application/json
200 Response
Success
Root Schema : EligibleActionsBean
Type:
Show Source
object-
operations:
array List of operations
Title:
List of operations
Examples
The following example shows how to retrieve all eligible actions for assets by submitting a POST request to the REST resource using cURL. For more information about cURL, see Use cURL.
curl -X GET -H "Authorization: Bearer <token>" -H "Content-type: application/json" -H "Accept: application/json" https://sitename.oracle.com/rest/v19/assets/eligibleActions
Request Body Sample
{
"assetKeys": ["abo_a361f227-c87d-4635-98c8-5ed1e9b0e083", "abo_a361f227-c87d-4635-98c8-5ed1e9b0e084"],
"transactionDate": "2025-12-10T11:55:59Z"
}
Response Body Sample
{
"operations": ["MODIFY", "TERMINATE", "RESUME", "RENEW", "SUSPEND", ]
}