v1

latestOpenAPI 3.0.02026-08-064311,0881.3 MB
appManagementV2

App uninstall job status

Get the status of an asynchronous app uninstall request for the given job identifier.

get/v2/apps/uninstall/{jobId}/status

Path parameters

jobIdstring required

Identifier of the asynchronous job for uninstalling the app.

Response

Status of the app uninstall job.

statusstring required

Whether or not the request is in progress (InProgress), has completed successfully (Success), or has completed with an error (Failed).

Example response

{
  "status": "Success",
  "errors": [
    {
      "code": "auth:password_too_short",
      "message": "Your password was too short.",
      "detail": "Your password was 5 characters long, the minimum length is 12 characters. See http://example.com/password for more information.",
      "meta": {
        "minLength": 12,
        "actualLength": 5
      }
    }
  ]
}