Disable archival storage on Vultr Object Storage and restore archived data back to standard tier.
Disabling Archival Storage removes the lifecycle policy and triggers a background job that moves all archived objects back to the Standard bucket. This process runs in the background and may take time depending on the volume of data.
Follow this guide to disable Archival Storage on a Standard Object Storage bucket using the Vultr Customer Portal or the Vultr API.
Send a GET request to the List Object Storages endpoint to retrieve your Standard subscription ID.
$ curl "https://api.vultr.com/v2/object-storage" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}"
Note the id of your Standard subscription (tier_id: 2). Use this value as {object-storage-id} in the next step.
Disable Archival Storage on the target bucket. Replace {object-storage-id} with your subscription ID and {bucket-name} with the name of the bucket.
$ curl "https://api.vultr.com/v2/object-storage/{object-storage-id}/bucket/{bucket-name}/archival" \
-X POST \
-H "Authorization: Bearer ${VULTR_API_KEY}" \
-H "Content-Type: application/json" \
-d '{"archival": false}'