Deployment API - View process module configuration for OneAgent

The request produces an application/json payload.

GETSaaShttps://{your-environment-id}.live.dynatrace.com/api/v1/deployment/installer/agent/processmoduleconfig
Environment ActiveGatehttps://{your-activegate-domain}:9999/e/{your-environment-id}/api/v1/deployment/installer/agent/processmoduleconfig

Authentication

To execute this request, you need an access token with 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
sectionsstring

A list of comma-separated section identifiers to retrieve values for. Supported sections are 'general' and 'agentType'. Defaults to 'general'.

queryoptional
hostgroupstring

The name of the host group the process is part of.

queryoptional

Response

Response codes

CodeTypeDescription
200AgentProcessModuleConfigResponse

Success

304-

Not modified.

4XXErrorEnvelope

Client side error.

5XXErrorEnvelope

Server side error.

Response body objects

The AgentProcessModuleConfigResponse object

The response to a process module config request.

ElementTypeDescription
propertiesSectionProperty[]

The properties and their sections in this response.

revisioninteger

The new revision associated with the config.

The SectionProperty object

A single agent property with it's associated section.

ElementTypeDescription
keystring

The property key.

sectionstring

The section this property belongs to.

valuestring

The property value.

Response body JSON model

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