Returns adoption tracking events using token-based pagination. Filters are optional and combined with logical AND. Use the nextPageToken from a previous response to fetch the next page. If no token is provided, results start from the first page. Both from and to are inclusive (ISO date: yyyy-MM-dd).
Security
Authorization
GET
curl -i -X GET \
'https://developer.celonis.com/_mock/celonis-apis/platform-api/openapi/openapi-external-v2/platform-adoption/api/external/v2/adoption-tracking-events/STUDIO_ASSET?appName=APPS&pageToken=eyI5ZTFkMzMwMy04N2Y4LTQ5NTEtOTkyNC02ZjhhY2E3MzY2MTUiOjE2Njk1Azk3NDAwMDB9&limit=200&from=2022-01-01&to=2022-01-31' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
{ "nextPageToken": "string", "content": [ { "appName": "APPS", "assetTab": { "id": "string", "name": "string" }, "asset": { "id": "string", "name": "string" }, "assetPackage": { "id": "string", "name": "string" }, "assetType": "string", "space": { "id": "string", "name": "string" }, "folders": [ { "id": "string", "name": "string" } ], "user": { "id": "string", "email": "string" }, "timestamp": "2019-08-24T14:15:22Z" } ] }