Checks the status of an anonymization job. The response contains the percentage of job progress.
The request produces an application/json
payload.
GET | SaaS | https://{your-environment-id}.live.dynatrace.com/api/v1/anonymize/anonymizationJobs/{requestId} |
Environment ActiveGate | https://{your-activegate-domain}:9999/e/{your-environment-id}/api/v1/anonymize/anonymizationJobs/{requestId} |
To execute this request, you need an access token with UserSessionAnonymization
scope.
To learn how to obtain and use it, see Tokens and authentication.
The ID of the required anonymization job.
Success. The response body contains the status of the anonymization job.
Failed. The input is invalid. See the response body for details.
AnonymizationProgressResult
objectThe progress of the anonymization job, percent.
-1 if the job is waiting for execution.
{"progress": 50}
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 -X GET \https://mySampleEnv.live.dynatrace.com/api/v1/anonymize/anonymizationJobs/7810238295331327902 \-H 'Authorization: Api-Token dt0c01.abc123.abcdefjhij1234567890'
https://mySampleEnv.live.dynatrace.com/api/v1/anonymize/anonymizationJobs/7810238295331327902
{"progress": 100}
200