import plivo
import json

client = plivo.RestClient('<auth_id>','<auth_token>')
powerpack = client.powerpacks.get(uuid="powerpack_uuid")
print str(powerpack.delete(False))

Deletes a single Powerpack. This operation cannot be undone.

API Endpoint

DELETE
https://api.plivo.com/v1/Account/{auth_id}/Powerpack/{powerpack_uuid}/

Attributes

unrent_numbersThe number connected with the powerpack is unrented if set to true. Defaults to false
import plivo
import json

client = plivo.RestClient('<auth_id>','<auth_token>')
powerpack = client.powerpacks.get(uuid="powerpack_uuid")
print str(powerpack.delete(False))