Problems API v2 - POST close a problem

Closes the specified problem and adds the closing comment.

The request consumes and produces an application/json payload.

POSTSaaShttps://{your-environment-id}.live.dynatrace.com/api/v2/problems/{problemId}/close
Environment ActiveGateCluster ActiveGatehttps://{your-activegate-domain}:9999/e/{your-environment-id}/api/v2/problems/{problemId}/close

Authentication

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

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

Parameters

ParameterTypeDescriptionInRequired
problemIdstring

The ID of the required problem.

pathrequired
bodyProblemCloseRequestDtoImpl

The JSON body of the request. Contains the closing comment on the problem.

bodyoptional

Request body objects

The ProblemCloseRequestDtoImpl object

ElementTypeDescriptionRequired
messagestring

The text of the closing comment.

required

Request body JSON model

This is a model of the request body, showing the possible elements. It has to be adjusted for usage in an actual request.

{
"message": "string"
}

Response

Response codes

CodeTypeDescription
200ProblemCloseResult

Success

204-

The problem is closed already the request hasn't been executed.

4XXErrorEnvelope

Client side error.

5XXErrorEnvelope

Server side error.

Response body objects

The ProblemCloseResult object

The result of closing a problem.

ElementTypeDescription
closeTimestampinteger

The timestamp when the user triggered the closing.

closingboolean

True, if the problem is being closed.

commentComment

The comment to a problem.

problemIdstring

The ID of the problem.

The Comment object

The comment to a problem.

ElementTypeDescription
authorNamestring

The user who wrote the comment.

contentstring

The text of the comment.

contextstring

The context of the comment.

createdAtTimestampinteger

The timestamp of comment creation, in UTC milliseconds.

idstring

The ID of the comment.

Response body JSON model

{
"closeTimestamp": 1,
"closing": true,
"comment": {
"authorName": "string",
"content": "string",
"context": "string",
"createdAtTimestamp": 1,
"id": "string"
},
"problemId": "string"
}