Hi @wonderland14 ,
Question: Is it possible to get the list of all snapshot filename?
A couple of options here:
- If you have been using SLM (Snapshot Lifecycle Management), you can use the Get snapshot lifecycle policy API. For example:
GET _slm/policyand retrieve thesnapshot_namein thelast_successsection.
- You can also use the cat snapshots API. For example:
GET _cat/snapshots?vand look for the lastSUCCESSFULsnapshot.
Let us know if that helps.