Delete BIOS Validation by ID
Use this API to delete information about a specific BIOS validation from Junos Space Service Now.
URI
https://[host]/api/juniper/servicenow/device-analysis/BIOSValidations/{id} (HTTP method = DELETE)
URI Parameters
Parameter | Type | Required | Description |
---|---|---|---|
id | Integer | Yes | ID of the BIOS validation to be deleted |
Consumes
None
Produces
- application/vnd.juniper.servicenow.device-analysis.serivenowmsg+xml;version=1
- application/vnd.juniper.servicenow.device-analysis.serivenowmsg+json;version=1
Response Elements
Parameter | Type | Description |
---|---|---|
status | String | Status of the delete BIOS validation operation |
msg | String | Message relating to the status of the delete BIOS validation operation |
Sample Output
Sample XML Output when Delete is Successful
<servicenowmsg> <status>Successful</status> <msg>BIOS Validation is deleted successfully</msg> </servicenowmsg>
Sample XML Output when Delete Fails
<servicenowmsg> <status>Unsuccessful</status> <msg>This BIOS validation could not be deleted because it is linked to other validations and their scanned status is yet not known.</msg> </servicenowmsg>
Sample JSON Output when Delete is Successful
{ "servicenowmsg": { "status": "Successful", "msg": "BIOS Validation is delete successfully" } }
Sample JSON Output when Delete Fails
{ "servicenowmsg": { "status": "Unsuccessful", "msg": "This BIOS validation could not be deleted because it is linked to other validations and their scanned status is yet not known." } }