How can we retrieve the Deleted Surveys deleted in the provided interval.
Could you let me know the endpoint and payload to retrieve the deleted surveys.
I tried below request body in Query for survey aggregates endpoint but it is also not helpful in my case.
{
"interval": "2024-07-01/2024-10-17",
"granularity": "P1D",
"groupBy": [
"surveyId"
],
"flattenMultivaluedDimensions": true,
"metrics": [
"nSurveysDeleted",
],
"filter": {
"type": "or",
"predicates": [
{
"type": "dimension",
"dimension": "surveyId",
"operator": "exists"
},
{
"type": "dimension",
"dimension": "conversationId",
"operator": "exists"
}
]
}
}
This topic was automatically closed 31 days after the last reply. New replies are no longer allowed.