Customize zip folder structure

Is it possible to Customize zip folder structure, for the zip-file downloaded from EC2 interface?

Currently it seems to have <hash>/PatientID/StudyDescription/SeriesDescription. Can we customize it to use <hash>/PatientID/StudyID/SeriesNumber-SeriesDescription? Example below.

Also what does the first part represent? 91bd967f-b8e50cb6-8dd7d867-83f2996a-3490bf2d in example below. Hash? UUID?

Current zip tree:

91bd967f-b8e50cb6-8dd7d867-83f2996a-3490bf2d
└── vol20241010
    └── Unknown Study
        ├── MR Fast GRE
        ├── MR Fast GRE-2
        ├── MR Fast GRE-3
        ├── MR LOCALIZER quick
        ├── MR LOCALIZER quick-2
        └── MR LOCALIZER quick-3

Desired below. Note SeriesNumber is included in the series-level folders.

91bd967f-b8e50cb6-8dd7d867-83f2996a-3490bf2d
└── vol20241010
    └── <StudyID>
        ├── 1-MR Fast GRE
        ├── 2-MR Fast GRE
        ├── 3-MR Fast GRE
        ├── 4-MR LOCALIZER quick
        ├── 5-MR LOCALIZER quick
        └── 6-MR LOCALIZER quick

Hello,

This is currently not possible out of the box.

An option is to overwrite the API route in python to implement your own zip structure.

Hope this helps,

Alain

Thank you for the response. May be I will revisit this at some later point.