Anonymization API - GET job status

Checks the status of an anonymization job. The response contains the percentage of job progress.

The request produces an application/json payload.

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

Authentication

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

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

Parameters

ParameterTypeDescriptionInRequired
requestIdstring

The ID of the required anonymization job.

pathrequired

Response

Response codes

CodeTypeDescription
200AnonymizationProgressResult

Success. The response body contains the status of the anonymization job.

400-

Failed. The input is invalid. See the response body for details.

4XXErrorEnvelope

Client side error.

5XXErrorEnvelope

Server side error.

Response body objects

The AnonymizationProgressResult object

ElementTypeDescription
progressinteger

The progress of the anonymization job, percent.

-1 if the job is waiting for execution.

Response body JSON model

{
"progress": 50
}

Example

In this example, the request checks the status of the anonymization job with the ID of 7810238295331327902.

The API token is passed in the Authorization header.

The response shows that the job is complete.

Curl

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

Request URL

https://mySampleEnv.live.dynatrace.com/api/v1/anonymize/anonymizationJobs/7810238295331327902

Response content

{
"progress": 100
}

Response code

200