Custom device logs API v1 - DELETE analysis job
Deletes or cancels the specified log analysis job.
The request produces an application/json
payload.
DELETE | ManagedDynatrace for Government | https://{your-domain}/e/{your-environment-id}/api/v1/entity/infrastructure/custom-devices/{customDeviceId}/logs/jobs/{jobId} |
SaaS | https://{your-environment-id}.live.dynatrace.com/api/v1/entity/infrastructure/custom-devices/{customDeviceId}/logs/jobs/{jobId} | |
Environment ActiveGate | https://{your-activegate-domain}/e/{your-environment-id}/api/v1/entity/infrastructure/custom-devices/{customDeviceId}/logs/jobs/{jobId} |
Authentication
To execute this request, you need an access token with LogExport
scope.
To learn how to obtain and use it, see Tokens and authentication.
Parameters
Parameter | Type | Description | In | Required |
---|---|---|---|---|
customDeviceId | string | The Dynatrace entity ID of the required custom device. | path | required |
jobId | string | The ID of the log analysis job to be deleted. You can retrieve it from the response of the POST analysis job request. | path | required |
Response
Response codes
Code | Type | Description |
---|---|---|
200 | Log | Success. The job has been deleted. |
400 | ErrorEnvelope | Failed. See the response body for details |
404 | ErrorEnvelope | Not found. See the response body for details. |
Response body objects
The LogJobDeleteResult
object
Element | Type | Description |
---|---|---|
message | string | - |
Response body JSON model
{
"message": "string"
}