> ## Documentation Index
> Fetch the complete documentation index at: https://docs.squarecloud.app/llms.txt
> Use this file to discover all available pages before exploring further.

# スナップショットの復元

> スナップショットをもとにアプリケーションを復元します。

<Warning>このルートには60秒あたり1リクエストのレート制限があります。</Warning>

<ParamField header="Authorization" type="string" placeholder="API Key" required>
  アカウントの API キーです。これは[アカウント設定](https://squarecloud.app/ja/account/security)で確認できます。
</ParamField>

### Parameters

<ParamField path="app_id" type="string" placeholder="Application ID" required>
  アプリケーションのID。アプリケーションのダッシュボードのURLで確認できます。
</ParamField>

<ParamField body="snapshotId" type="string" placeholder="Snapshot ID" required>
  このアプリケーション（app\_id）に対して復元するスナップショットのID。
</ParamField>

<ParamField body="versionId" type="string" placeholder="Snapshot Version Key" required>
  スナップショットのバージョンキー。
</ParamField>

### Response

<ResponseField name="status" type="string">
  呼び出しが成功したかどうかを示します。成功した場合は `success`、失敗した場合は `error` です。
</ResponseField>

<ResponseExample>
  ```json theme={null}
  {
    "status":"success"
  }
  ```
</ResponseExample>
