Skip to content

findAllStudioAssetAdoptionTrackingEvents

Request

Security
Authorization
Query
appNamestring(StudioAppName)

Type of adoption tracking event

Enum:"APPS""STUDIO"
Example:appName=APPS
pageNumberinteger, (int32), >= 0

Page number to be retrieved, starts with 0

Default:0
Example:pageNumber=0
pageSizeinteger, (int32), [ 1 .. 200 ]

Limit of results per page

Default:200
Example:pageSize=200
fromstring, (date)

Date Time ISO 8601 yyyy-MM-dd

Example:from=2022-01-01
tostring, (date)

Date Time ISO 8601 yyyy-MM-dd

Example:to=2022-01-31
GET
/platform-adoption/api/external/adoption-tracking-events/STUDIO_ASSET
curl -i -X GET \
  'https://developer.celonis.com/_mock/celonis-apis/platform-api/openapi/openapi-external-v1/platform-adoption/api/external/adoption-tracking-events/STUDIO_ASSET?appName=APPS&pageNumber=0&pageSize=200&from=2022-01-01&to=2022-01-31' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

A JSON object representing the paginated results.

Bodyapplication/json
contentArray of objects(StudioAssetAdoptionTrackingEventExternalTransport)
pageNumberinteger, (int32)
pageSizeinteger, (int32)
totalCountinteger, (int64)
Response
{ "content": [ { "appName": "APPS", "asset": { "id": "string", "name": "string" }, "assetPackage": { "id": "string", "name": "string" }, "folders": [ { "id": "string", "name": "string" } ], "space": { "id": "string", "name": "string" }, "timestamp": "2019-08-24T14:15:22Z", "user": { "email": "string", "id": "string" } } ], "pageNumber": 0, "pageSize": 0, "totalCount": 0 }