Hi,
How do I get the list of document ids based on a sear criteria(Attribute values)? I am able to download a document using document id but I am looking for a way to get the list of documents based on a search criteria.
Ex: I have invoice #, Date and Store Number (These attributes are configured in the content server).
Based on the Invoice# how do I get the document id? (Each Invoice details are stored as a text file that is associated with a document Id). Once I have the document id for the respective invoice, I can download the document using document id through DownloadContent method of content service.
Steps Performed:
1, Used Authentication service to Authenticate the user and received the Authentication Token-- Successful
Method: AuthenticateUser
2. Got the contextId based on the hardcoded document id that belongs to an invoice#
Method: GetVersionContentsContext(oAuthToken,DocumentId)
3. Downloaded the document using the context id
My question: How do we get the list of document ids based on a search criteria.
Appreciate your help.