How to Delete Vultr Serverless Inference
- 
                
by Blog Admin
 - 16
 
How to Delete Vultr Serverless Inference
ermanently removes the selected resource from your Vultr account.
Deleting the Vultr Serverless Inference subscription involves removing the entire inference subscription from your account. This process is important for managing resource allocation and avoiding unnecessary costs. Ensuring that unused subscriptions are properly deleted helps maintain an efficient and cost-effective cloud environment.
Follow this guide to delete the Serverless Inference subscription on your Vultr account using the Vultr Customer Portal, API, or CLI.
Vultr Customer Portal
- Navigate to Products, click Serverless, and then click Inference.
 - Click your target inference subscription to open its management page.
 - Click delete icon on the top right of the management page.
 - Click Close Serverless Inference Subscription in the confirmation prompt to permanently delete the target inference subscription.
 
Vultr API
- Send a 
GETrequest to the List Serverless Inference endpoint and note the target inference subscription’s ID.console$ curl "https://api.vultr.com/v2/inference" \ -X GET \ -H "Authorization: Bearer ${VULTR_API_KEY}"
 - Send a 
DELETErequest to the Delete Serverless Inference endpoint to delete the target inference subscription.console$ curl "https://api.vultr.com/v2/inference/{inference-id}" \ -X DELETE \ -H "Authorization: Bearer ${VULTR_API_KEY}"
 
Vultr CLI
- List all the inference subscriptions available and note the target inference subscription’s ID.
console
$ vultr-cli inference list - Delete the target inference subscription.
console
$ vultr-cli inference delete <inference-id> 
How to Delete Vultr Serverless Inference ermanently removes the selected resource from your Vultr account. Deleting the Vultr Serverless Inference subscription involves removing the entire inference subscription from your account. This process is important for managing resource allocation and avoiding unnecessary costs. Ensuring that unused subscriptions are properly deleted helps…
How to Delete Vultr Serverless Inference ermanently removes the selected resource from your Vultr account. Deleting the Vultr Serverless Inference subscription involves removing the entire inference subscription from your account. This process is important for managing resource allocation and avoiding unnecessary costs. Ensuring that unused subscriptions are properly deleted helps…