Delete an import package

delete

/AgentWeb/api/elementmanager/import/EMPackages/{id}

Deletes an Element Manager import package

Request

Path Parameters
Header Parameters
Back to Top

Response

Supported Media Types

200 Response

Status of import
Body ()
Root Schema : EMStatus
Type: object
Show Source
Nested Schema : PublicApiExceptionResponse
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : EMPackageStatus
Type: object
Show Source
Nested Schema : EMProcessedItem
Type: object
Show Source
Nested Schema : EMCodeDescPair
Type: object
Show Source
Back to Top

Examples

The following example shows how to delete an import package.

cURL Command Example

curl -X DELETE https://mysite.example.com/AgentWeb/api/elementmanager/import/EMPackages/100005 -H "USERSESSION: feihg98GnT7i" -H "API_VERSION: 1" -H "Content-Type: application/json"

Response Body Example

The following shows an example of the response body in JSON format.

{
    "description": "Deleting the EM package",
    "status": {
        "code": "19",
        "description": "Deleted"
    }
}
Back to Top