Deleting Resources

DELETE operations delete the resource with the ID specified in the path and do not require a model. Because DELETE methods run without any confirmation, take care that the operations are used as intended. When a DELETE operation is successful, it returns only the HTTP Response code of 202, accepted. No model is returned.

For example, the following deletes the app with the ID vixblsemvwmtiwsh4sotkjartamogxd4:

curl -X DELETE "https://api.cloud.tibco.com/tci/v1/subscriptions/0/apps/vixblsemvwmtiwsh4sotkjartamogxd4" -H  "accept: application/json" -H  "Authorization: Bearer <your-oauth-token>"

Related Topics

API Basics