• Home
  • Dynatrace API
  • Environment
  • Deployment
  • OneAgent
  • View process module configuration

Deployment API - View process module configuration for OneAgent

The request produces an application/json payload.

Early Adopter

This request is an Early Adopter release and may be changed in non-compatible way.

GETManaged https://{your-domain}/e/{your-environment-id}/api/v1/deployment/installer/agent/processmoduleconfig
SaaS https://{your-environment-id}.live.dynatrace.com/api/v1/deployment/installer/agent/processmoduleconfig
Environment ActiveGate https://{your-activegate-domain}/e/{your-environment-id}/api/v1/deployment/installer/agent/processmoduleconfig

Authentication

To execute this request, you need an access token with PaaS integration - Installer download (InstallerDownload) scope. To learn how to obtain and use it, see Tokens and authentication.

Parameters

ParameterTypeDescriptionInRequired
revisioninteger

The previously received revision to compare against.

queryoptional

Response

Response codes

CodeTypeDescription
200AgentProcessModuleConfigResponse

Success

304-

Not modified.

Response body objects

The AgentProcessModuleConfigResponse object

The response to a process module config request.

ElementTypeDescription
revisioninteger

The new revision associated with the config.

Can be null.

propertiesSectionProperty[]

The properties and their sections in this response.

Can be null.

The SectionProperty object

A single agent property with it's associated section.

ElementTypeDescription
sectionstring

The section this property belongs to.

Can be null.

keystring

The property key.

Can be null.

valuestring

The property value.

Can be null.

Response body JSON model

json
{ "revision": 64459404400310540, "properties": [ { "section": "general", "key": "dockerInjection", "value": "on" } ] }