Hi,
In C#, how do I get the extension of an Document given its Id (Using Laserfiche.Repository.Api.Client)? With curl, it's easy to do - just append a querystring with value "extension" at the end of the URL(albeit, it gives me a different structure than Entry), but I don't quite know how to do it with the API. I thought I could do it this way with EntriesClient?
client.EntriesClient.GetEntryAsync(repoId, entryId, select="extension");
I thought I'd use "select", which came from the Swagger playground input box labeled "Select" and entering "extension" actually gives me the file extension, but that's from Swagger. But intellisense seems to indicate that "select" in the GetEntryAsync refers to type of Entry, i.e., Document, Folder, etc.
So, how do I query the file extension with the API?