RUM cookie names API - GET cookie names

Lists RUM cookie names.

The request produces an application/json payload.

GETSaaShttps://{your-environment-id}.live.dynatrace.com/api/v2/rum/cookieNames
Environment ActiveGateCluster ActiveGatehttps://{your-activegate-domain}:9999/e/{your-environment-id}/api/v2/rum/cookieNames

Authentication

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

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

Parameters

The request doesn't provide any configurable parameters.

Response

Response codes

CodeTypeDescription
200CookieNames

Success. The response contains all RUM cookie names

4XXErrorEnvelope

Client side error.

5XXErrorEnvelope

Server side error.

Response body objects

The CookieNames object

The list of all cookie names.

ElementTypeDescription
latencyCookieNamestring

The name of the latency cookie.

pageContextCookieNamestring

The name of the page context cookie.

sessionCookieNamestring

The name of the session cookie.

visitorCookieNamestring

The name of the visitor cookie.

Response body JSON model

{
"latencyCookieName": "dtLatC",
"pageContextCookieName": "dtPC",
"sessionCookieName": "dtCookie",
"visitorCookieName": "rxVisitor"
}