# Create a snapshot **POST /_snapshot/{repository}/{snapshot}** **All methods and paths for this operation:**
PUT /_snapshot/{repository}/{snapshot}
POST /_snapshot/{repository}/{snapshot}
Take a snapshot of a cluster or of data streams and indices. ## Required authorization * Cluster privileges: `create_snapshot` [More about managing snapshots](https://www.elastic.co/docs/deploy-manage/tools/snapshot-and-restore/create-snapshots) ## 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 for the snapshot. - **snapshot** (string) The name of the snapshot. It supportes date math. It must be unique in the repository. ### Query parameters - **master_timeout** (string) The period to wait for a connection to the master node. If no response is received before the timeout expires, the request fails and returns an error. - **wait_for_completion** (boolean) If `true`, the request returns a response when the snapshot is complete. If `false`, the request returns a response when the snapshot initializes. ### Body: application/json (object) - **expand_wildcards** (string | array[string]) Determines how wildcard patterns in the `indices` parameter match data streams and indices. It supports comma-separated values such as `open,hidden`. Supported values include: - `all`: Match any data stream or index, including hidden ones. - `open`: Match open, non-hidden indices. Also matches any non-hidden data stream. - `closed`: Match closed, non-hidden indices. Also matches any non-hidden data stream. Data streams cannot be closed. - `hidden`: Match hidden data streams and hidden indices. Must be combined with `open`, `closed`, or `both`. - `none`: Wildcard expressions are not accepted. - **feature_states** (array[string]) The feature states to include in the snapshot. Each feature state includes one or more system indices containing related data. You can view a list of eligible features using the get features API. If `include_global_state` is `true`, all current feature states are included by default. If `include_global_state` is `false`, no feature states are included by default. Note that specifying an empty array will result in the default behavior. To exclude all feature states, regardless of the `include_global_state` value, specify an array with only the value `none` (`["none"]`). - **ignore_unavailable** (boolean) If `true`, the request ignores data streams and indices in `indices` that are missing or closed. If `false`, the request returns an error for any data stream or index that is missing or closed. - **include_global_state** (boolean) If `true`, the current cluster state is included in the snapshot. The cluster state includes persistent cluster settings, composable index templates, legacy index templates, ingest pipelines, and ILM policies. It also includes data stored in system indices, such as Watches and task records (configurable via `feature_states`). - **indices** (string | array[string]) A comma-separated list of data streams and indices to include in the snapshot. It supports a multi-target syntax. The default is an empty array (`[]`), which includes all regular data streams and regular indices. To exclude all data streams and indices, use `-*`. You can't use this parameter to include or exclude system indices or system data streams from a snapshot. Use `feature_states` instead. - **metadata** (object) Arbitrary metadata to the snapshot, such as a record of who took the snapshot, why it was taken, or any other useful data. It can have any contents but it must be less than 1024 bytes. This information is not automatically generated by Elasticsearch. - **partial** (boolean) If `true`, it enables you to restore a partial snapshot of indices with unavailable shards. Only shards that were successfully included in the snapshot will be restored. All missing shards will be recreated as empty. If `false`, the entire restore operation will fail if one or more indices included in the snapshot do not have all primary shards available. ## Responses ### 200 #### Body: application/json (object) - **accepted** (boolean) Equals `true` if the snapshot was accepted. Present when the request had `wait_for_completion` set to `false` - **snapshot** (object) Snapshot information. Present when the request had `wait_for_completion` set to `true` [Powered by Bump.sh](https://bump.sh)