Discussions

Ask a Question
ANSWERED

How to delete queues and workspaces?

Once created, how can we eliminate queues and workspaces from our accounts?
ANSWERED

How to get usage report for total pages consumed through API ?

We used the API <https://elis.rossum.ai/api/v1/annotations/usage_report> for getting the total document consumed per month. Is there any way we could get the Total pages used per month through any API call or passing a specific parameter to the above API URL?
ANSWERED

How can I export original file with Zapier?

I have created the Zap integration with Podio, but when I tried to fetch original file from Rossum, I am getting an error, because I am not authorized to access the file via API link. Is there any workaround for that?
ANSWERED

How do you check if an invoicehas been back dated

I'm trying to use the value operations extension to check if the `date_issue` field is less than the documents `arrived_by` date. I.e. is the invoice backdated? The extension has no trouble finding the `date_issue` field but it is not able to find the `arrived_by` field I presume because it's in the documents metadata rather than the documents rir fields. Do you know a way of of referencing the documents `arrived_by` field when doing value operations. My value operations config currently looks like this: ```json json { "operations": [ { "condition": "{arrived_by} > {date_issue}", "target_field": "backdated", "default_value": "Yes", "condition_false_default_value": "No" } ] } ``` This results in this error: ``` Schema ID 'arrived_by' not found in the document in Value Operations configuration: {'condition': '{arrived_by} > {date_issue}', 'target_field': 'backdated', 'default_value': 'Yes', 'condition_false_default_value': 'No'} ``` Any ideas?
ANSWERED

Multiple validation extensions?

Hi, I have an extension that uses a webhook to validate two fields, say A and B. This extension is called on Document content- Initialize and User update. I noticed that if I return a successful message from my webhook (say when B is changed), this removes the earlier message (type: error) that A is invalid. Is there a way to get existing messages to the webhook, so that I can append to the messages array? Or do I need to handle multiple validations everytime the webhook is called? Use case: Document Initialized A="" B="" User update: A="123" (Error message shown) B="" User update: A="123" [no message] B="abc" (Info message shown)
ANSWERED

Values to trigger Value transformation

Hi team, When using "action_condition" in Value transformation extension, I would like to know if it's possible to have several possible values triggering the action conditions. Thanks in advance, JR
ANSWERED

Automatic routing of documents among different queues

Can rossum perfrom Automatic routing of documents among different queues based on certain conditions? For e.g. If Invoice Total is above 50k it should route automatically to XYZ queue. Can we build such mechanism with Rossum?
ANSWERED

Python Support

Did rossum remove its python support ? Not able to use the python library
ANSWERED

Only retrieve documents from a specific queue & status

Hi there, is it possible to only list the documents from a specific queue and with a specific status though GET https://api.elis.rossum.ai/v1/documents ? Thanks!
ANSWERED

Automatically rename files

Is it possible to create an extension script to automatically rename my files to a unique field value after confirmation? If so what would the general logic of that function look like? Thanks!