Unregistering a VADP proxy

You can unregister a VADP proxy from the IBM Spectrum Protect Plus system environment.

Method and URI

To unregister a VADP proxy with {vadpId}, use the request’s method and URI are similar to the following example:

DELETE  https://{hostname|IPv4}/api/vadp/{vadpId}

Tip

To get a {vadpId} value based on the IPv4 address of the VADP proxy, follow the instructions in Getting a {vadpId}.

Parameters

None.

Data

None.

Example: Unregister a VADP proxy

Assume that you have a VADP proxy, centos-vadp-singapore1 ({vadp_id} 2103), and you want to unregister the VADP proxy.

A Python snippet that is similar to the following example can be used to unregister the VADP proxy from IBM Spectrum Protect Plus:

vadp_id = "2103"

requests.delete('https://' + spp_ipv4 + '/api/vadp/' + vadp_id,
    headers={...}, data=_data, verify=...)

Ensure that you get a response with the HTTP status of 204 (No Content) and you no longer see the VADP proxy centos-vadp-singapore1. The response body is empty.