# Mount a snapshot **POST /_snapshot/{repository}/{snapshot}/_mount** Mount a snapshot as a searchable snapshot index. Do not use this API for snapshots managed by index lifecycle management (ILM). Manually mounting ILM-managed snapshots can interfere with ILM processes. ## Required authorization * Index privileges: `manage` * Cluster privileges: `manage` ## Servers - http://api.example.com: http://api.example.com () ## Authentication methods - Api key auth - Basic auth - Bearer auth ## Parameters ### Path parameters - **repository** (string) The name of the repository containing the snapshot of the index to mount. - **snapshot** (string) The name of the snapshot of the index to mount. ### Query parameters - **master_timeout** (string) The period to wait for the master node. If the master node is not available before the timeout expires, the request fails and returns an error. To indicate that the request should never timeout, set it to `-1`. - **wait_for_completion** (boolean) If true, the request blocks until the operation is complete. - **storage** (string) The mount option for the searchable snapshot index. For further information on mount options, refer to: [Mount options](https://www.elastic.co/docs/deploy-manage/tools/snapshot-and-restore/searchable-snapshots#searchable-snapshot-mount-storage-options) Supported values include: - `full_copy`: Fully caches the snapshotted index’s shards in the Elasticsearch cluster. - `shared_cache`: Uses a local cache containing only recently searched parts of the snapshotted index’s data. ### Body: application/json (object) - **index** (string) The name of the index contained in the snapshot whose data is to be mounted. If no `renamed_index` is specified, this name will also be used to create the new index. - **renamed_index** (string) The name of the index that will be created. - **index_settings** (object) The settings that should be added to the index when it is mounted. - **ignore_index_settings** (array[string]) The names of settings that should be removed from the index when it is mounted. ## Responses ### 200 #### Body: application/json (object) - **snapshot** (object) [Powered by Bump.sh](https://bump.sh)