Undo deinstall an inventory

post

/rest/ofscCore/v1/inventories/{inventoryId}/custom-actions/undoDeinstall

This operation updates the status of the specified deinstalled inventory to 'customer'.

If the specified inventory is non-serialized, then the quantity must be provided. If the specified inventory is associated with a segmentable activity, then the Activity ID must be specified.

Request

Path Parameters
Body ()
Root Schema : Inventory Custom Action
Type: object
Title: Inventory Custom Action
The schema of the request body object for this operation.
Show Source
Back to Top

Response

Supported Media Types

200 Response

This section describes the 200 status response for this operation.

Default Response

This section describes the default error response for this operation.
Body ()
Root Schema : Error
Type: object
Show Source
Back to Top

Examples

The following example shows how to undo inventory uninstallation by submitting a POST request on the REST resource:

Example of Request Header

The following shows an example of the request header.

POST /rest/ofscCore/v1/inventories/21258547/custom-actions/undoDeinstall HTTP/1.0
Authorization: Basic c29hcEB5YW1hdG86MQ==
Host: etadev1f
Accept: */*

Example of Request Body

The following shows an example of the request body

{
  "quantity": "30",
  "activityId": "4225279"
}

Example of Response Header

The following shows an example of the response header.

HTTP/1.1 200 OK
Server: nginx/1.6.2
Date: Fri, 24 Jul 2015 08:35:48 GMT
ContentType:
application/json; charset=utf8
Connection: close

Example of Response Body

The following example shows the contents of the response body in JSON format:

{
"inventoryId": 21258547,
"status": "deinstall",
"inventoryType": "EC",
"serialNumber": "werwerwerwe",
"quantity": 30,
"resourceId": "44011",
"activityId": 21258547,
"links": [
{
"rel": "canonical",
"href": "https://etadev1f/rest/ofscCore/v1/inventories/21258547"
},
{
"rel": "describedby",
"href": "https://etadev1f/rest/ofscCore/v1/metadatacatalog/inventories"
}
]
}
Back to Top