The endTime of the entity will tell when the entity will expire
Option 1: If you know the externalID of the entity use the following DX Platform > TAS query using postman
EndPoint: <http(s)://apmservices-gateway-<your domain>/tas/graph/query
Set the Authorization
Set the Body =
Example:
{
"filter": {
"op": "VERTEX",
"externalId": [
"ACN:V-CAPC$Spectrum-1301c6e7-3868-4b26-b530-f21ef634bcfd"
]
}
}
Option 2: If you know the name of the entities, use the alternative query
Example:
{
"filter": {
"op": "TAKE_VERTICES",
"input": {
"op": "ATTRIBUTE",
"expressions": [
{
"name": "name",
"values": [
"entityName1",
"entityName2"
],
"operator": "IN"
}
]
}
},
"projection": "NO_TYPE"
}