Retrieve List of All Styles in Workbook

Hello!
Is there a way to retrieve a list of all the styles in a workbook? I see a function that returns the workbook’s default style and I see another function that returns a cell’s style, but I’m not seeing anything that would give me the full list of all the styles used, or even the total number of styles used. Is there a way to get this?

I am using the the python sdk

@jamieMacabacus We currently do not support this feature, but we will develop a way to implement this feature as soon as possible based on your needs.

1 Like

@jamieMacabacus
We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.

Issue ID(s): {CELLSCLOUD-13111}

You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.

@jamieMacabacus
We updated the latest cells cloud version 25.2.3 and added the GetAllStyles API to meet this function.
Below is the reference code for the call:

ReadyFile(Book1Xlsx);
var url = BuildUrl(string.Format("{0}/allstyles?folder={1}", Book1Xlsx, TempFolderPath));
string bodyParam = null;
Dictionary<string, string> headParams = null;
Dictionary<string, object> formParams = null;
var response = ApiInvoker.InvokeApiAsync<StylesResponse>(url, "GET", bodyParam, headParams, formParams).Result;