# pydo.apps.revert\_rollback() Generated on 12 Mar 2026 from `pydo` version [`v0.28.0`](https://github.com/digitalocean/pydo/releases/tag/v0.28.0) ## Description Revert an app rollback. This action reverts the active rollback by creating a new deployment from the latest app spec prior to the rollback and unpins the app to resume new deployments. ## Parameters | Name | Type | Required | Description | Default Value | |---|---|---|---|---| | `app_id` | string | True | The app ID | | ## Request Sample ```python import os from pydo import Client client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN")) revert_resp = client.apps.revert_rollback("1") ``` ## More Information See [the API spec for this endpoint](https://docs.digitalocean.com/reference/api/digitalocean/index.html.md#operation/apps_revert_rollback) to view additional detail on responses, headers, parameters, and more.