Applications API - GET all apps

  • Reference
  • Deprecated

This API is deprecated. Use the Monitored entities API instead. You can find more information about switching to the new API in the migration guide.

Fetches the list of all applications in your Dynatrace environment, along with their parameters.

The full list can be lengthy, so you can narrow it down by specifying filter parameters, like tags. See the Parameters section for more details.

You can additionally limit the output by using the pagination:

  1. Specify the number of results per page in the pageSize query parameter.
  2. Then use the cursor from the Next-Page-Key response header in the nextPageKey query parameter to obtain subsequent pages.

The request produces an application/json payload.

GETSaaShttps://{your-environment-id}.live.dynatrace.com/api/v1/entity/applications
Environment ActiveGatehttps://{your-activegate-domain}:9999/e/{your-environment-id}/api/v1/entity/applications

Authentication

To execute this request, you need an access token with DataExport scope.

To learn how to obtain and use it, see Tokens and authentication.

Parameters

ParameterTypeDescriptionInRequired
startTimestampinteger

The start timestamp of the requested timeframe, in milliseconds (UTC).

If not set, then 72 hours behind from now is used.

queryoptional
endTimestampinteger

The end timestamp of the requested timeframe, in milliseconds (UTC).

If not set, then the current timestamp is used.

The timeframe must not exceed 3 days.

queryoptional
relativeTimestring

The relative timeframe, back from now.

  • min
  • 5mins
  • 10mins
  • 15mins
  • 30mins
  • hour
  • 2hours
  • 6hours
  • day
  • 3days
queryoptional
tagstring[]

Filters the resulting set of applications by the specified tag. You can specify several tags in the following format: tag=tag1&tag=tag2. The application has to match all the specified tags.

In case of key-value tags, such as imported AWS or CloudFoundry tags, use the following format: tag=[context]key:value. For custom key-value tags, omit the context: tag=key:value.

queryoptional
entitystring[]

Filters result to the specified applications only.

To specify several applications use the following format: entity=ID1&entity=ID2.

queryoptional
managementZoneinteger

Only return applications that are part of the specified management zone.

queryoptional
includeDetailsboolean

Includes (true) or excludes (false) details which are queried from related entities.

Excluding details may make queries faster.

If not set, then true is used.

queryoptional
pageSizeinteger

The number of applications per result page.

If not set, pagination is not used and the result contains all applications fitting the specified filtering criteria.

queryoptional
nextPageKeystring

The cursor for the next page of results. You can find it in the Next-Page-Key header of the previous response.

If you're using pagination, the first page is always returned without this cursor.

You must keep all other query parameters as they were in the first request to obtain subsequent pages.

queryoptional

Response headers

Header
Type
Description
Total-Count
integer
The estimated number of results.
Next-Page-Key
string
The cursor for the next page of results. Without it you'll get the first page again.
Page-Size
string
The maximum number of results per page.

Response

Response codes

CodeTypeDescription
200Application[]

Success

400ErrorEnvelope

Failed. The input is invalid.

4XXErrorEnvelope

Client side error.

5XXErrorEnvelope

Server side error.

Response body objects

The ResponseBody object

The Application object

ElementTypeDescription
applicationMatchTargetstring-
  • DOMAIN
  • URL
applicationTypestring-
  • AGENTLESS_MONITORING
  • AMP
  • AUTO_INJECTED
  • DEFAULT
  • SAAS_VENDOR
customizedNamestring

The customized name of the entity

discoveredNamestring

The discovered name of the entity

displayNamestring

The name of the Dynatrace entity as displayed in the UI.

entityIdstring

The Dynatrace entity ID of the required entity.

firstSeenTimestampinteger

The timestamp of when the entity was first detected, in UTC milliseconds

fromRelationshipsobject

The list of outgoing calls from the application.

lastSeenTimestampinteger

The timestamp of when the entity was last detected, in UTC milliseconds

managementZonesEntityShortRepresentation[]

The management zones that the entity is part of.

ruleAppliedMatchTypestring-
  • ALL_URLS_AND_DOMAINS
  • CONTAINS
  • ENDS
  • EQUALS
  • MATCHES
  • STARTS
ruleAppliedPatternstring-
tagsTagInfo[]

The list of entity tags.

toRelationshipsobject

The list of incoming calls to the application.

The EntityShortRepresentation object

The short representation of a Dynatrace entity.

ElementTypeDescription
descriptionstring

A short description of the Dynatrace entity.

idstring

The ID of the Dynatrace entity.

namestring

The name of the Dynatrace entity.

The TagInfo object

Tag of a Dynatrace entity.

ElementTypeDescription
contextstring

The origin of the tag, such as AWS or Cloud Foundry.

Custom tags use the CONTEXTLESS value.

  • AWS
  • AWS_GENERIC
  • AZURE
  • CLOUD_FOUNDRY
  • CONTEXTLESS
  • ENVIRONMENT
  • GOOGLE_CLOUD
  • KUBERNETES
keystring

The key of the tag.

Custom tags have the tag value here.

valuestring

The value of the tag.

Not applicable to custom tags.

Response body JSON model

[
{
"applicationMatchTarget": "DOMAIN",
"applicationType": "AGENTLESS_MONITORING",
"customizedName": "string",
"discoveredName": "string",
"displayName": "string",
"entityId": "string",
"firstSeenTimestamp": 1,
"fromRelationships": {
"calls": [
"string"
]
},
"lastSeenTimestamp": 1,
"managementZones": [
{
"description": "Dynatrace entity for the REST API example",
"id": "6a98d7bc-abb9-44f8-ae6a-73e68e71812a",
"name": "Dynatrace entity"
}
],
"ruleAppliedMatchType": "ALL_URLS_AND_DOMAINS",
"ruleAppliedPattern": "string",
"tags": [
{
"context": "AWS",
"key": "string",
"value": "string"
}
],
"toRelationships": {
"monitors": [
"string"
]
}
}
]

Example

In this example, the request asks for a list all the applications in the environment.

The API token is passed in the Authorization header.

The result is truncated to three entries.

Curl

curl -X GET \
https://mySampleEnv.live.dynatrace.com/api/v1/entity/applications/ \
-H 'Authorization: Api-Token dt0c01.abc123.abcdefjhij1234567890'

Request URL

https://mySampleEnv.live.dynatrace.com/api/v1/entity/applications

Response body

[
{
"entityId": "APPLICATION-EA7C4B59F27D43EB",
"displayName": "RUM Default Application",
"customizedName": "RUM Default Application",
"discoveredName": "RUM Default Application",
"firstSeenTimestamp": 1422282024216,
"lastSeenTimestamp": 1538579528065,
"tags": [
{
"context": "CONTEXTLESS",
"key": "Mytag"
},
{
"context": "CONTEXTLESS",
"key": "Test"
}
],
"fromRelationships": {
"calls": [
"SERVICE-FFE4B7A6D72F2CAC"
]
},
"toRelationships": {},
"applicationType": "DEFAULT",
"ruleAppliedPattern": "http",
"managementZones": [
{
"id": "-6239538939987181652",
"name": "allTypes"
},
{
"id": "-2519468841583898843",
"name": "app name exists"
},
{
"id": "4485554873951847460",
"name": "Applications except easyTravel"
}
]
},
{
"entityId": "APPLICATION-BBFA55551D507E2B",
"displayName": "easyTravel Ionic Web",
"discoveredName": "easyTravel Ionic Web",
"firstSeenTimestamp": 1528695861873,
"lastSeenTimestamp": 1538572321269,
"tags": [],
"fromRelationships": {
"calls": [
"SERVICE-ED0B103392AC86BF"
]
},
"toRelationships": {},
"applicationType": "RUMONLY",
"managementZones": [
{
"id": "-6239538939987181652",
"name": "allTypes"
},
{
"id": "-4085081632192243904",
"name": "easyTravel"
}
]
},
{
"entityId": "MOBILE_APPLICATION-752C288D59734C79",
"displayName": "easyTravel Demo",
"customizedName": "easyTravel Demo",
"discoveredName": "752c288d-5973-4c79-b7d1-3a49d4d42ea0",
"firstSeenTimestamp": 1469613941393,
"lastSeenTimestamp": 1538654940201,
"tags": [
{
"context": "CONTEXTLESS",
"key": "portal"
},
{
"context": "CONTEXTLESS",
"key": "easyTravel"
}
],
"fromRelationships": {
"calls": [
"SERVICE-ED0B103392AC86BF"
]
},
"toRelationships": {},
"mobileOsFamily": [
"ANDROID",
"IOS",
"WINDOWS"
],
"managementZones": [
{
"id": "-4085081632192243904",
"name": "easyTravel"
}
]
}
]

Response code

200