REST API export
The REST API Export extension is responsible for sending exported data from Rossum to an external REST API. It is designed to be a part of the Export Pipeline and works with Custom Format Templating to prepare the data before transmission.
Installation
REST API export extension is provided and maintained by Rossum.ai in the form of webhook. To start using it, follow these steps:
- Login to your Rossum account.
- Navigate to Extensions → My extensions.
- Click on Create extension.
- Fill the following fields:
- Name:
REST API export
- Trigger events:
Export
- Extension type:
Webhook
- URL (see below)
- Name:
- In "Advanced settings" select Token owner (should have Admin access)
- Click Create the webhook.
- Fill in the
Configuration
field (see Configuration examples for some examples).
Webhook URL endpoints:
Environment | Webhook URL |
---|---|
EU1 Ireland | https://elis.rest-api-export.rossum-ext.app/ |
EU2 Frankfurt | https://shared-eu2.rest-api-export.rossum-ext.app/ |
US east coast | https://us.rest-api-export.rossum-ext.app/ |
Japan Tokyo | https://shared-jp.rest-api-export.rossum-ext.app/ |
Configuration examples
This extension works as a part of the Export Pipeline and it expects a payload file to be generated using Custom format templating extension.
Simple REST API call
A basic example of exporting data via a REST API.
{
"export_reference_key": "export_annotation_to_csv",
"request": {
"url": "https://webhook.site/XXX-ZZZ",
"method": "POST",
"headers": {
"Content-Type": "text/plain"
},
"content": "#{file_content}"
}
}
REST API call with OAuth2
The request can be extended to use OAuth2:
{
"export_reference_key": "export_annotation_to_csv",
"auth": {
"url": "http://custom.url/token",
"method": "POST",
"data": {
"username": "your_username",
"password": "{secret.password}"
}
},
"request": {
"url": "https://webhook.site/XXX-ZZZ",
"method": "POST",
"headers": {
"Content-Type": "text/plain",
"Authorization": "Bearer {secret.access_token}"
},
"content": "#{file_content}"
}
}
The access_token
is automatically retrieved using given credentials and saved to hook secrets for later reuse. A more complex example using OAuth2 authentication, with response storage and a condition controlling execution:
{
"export_reference_key": "export_annotation_to_csv",
"request": {
"url": "https://webhook.site/XXX-ZZZ",
"method": "POST",
"headers": {
"Content-Type": "text/json"
},
"content": "#{file_content}"
},
"auth": {
"url": "http://custom.url/token",
"method": "POST",
"data": {
"scope": "invoice.create invoice.read",
"client_id": "{secret.client_id}",
"grant_type": "client_credentials",
"client_secret": "{secret.client_secret}"
},
"headers": {
"Content-Type": "application/x-www-form-urlencoded"
}
},
"condition": "@{api_gate}",
"response_headers_reference_key": "export_reply_headers",
"response_payload_reference_key": "export_reply_payload"
}
The response_headers_reference_key
stores the headers of the reply with added status_code
, headers
converted to json strucutre and raw
headers. See the following example:
{
"status_code": 200,
"headers": {
"access_control_allow_origin": "*",
"alt_svc": "h3=\":443\"; ma=2592000",
"content_type": "application/json",
"date": "Tue, 25 Jun 2024 08:02:26 GMT",
"vary": "Accept-Encoding",
"transfer_encoding": "chunked"
},
"raw": [
["Access-Control-Allow-Origin", "*"],
["Alt-Svc", "h3=\":443\"; ma=2592000"],
["Content-Type", "application/json"],
["Date", "Tue, 25 Jun 2024 08:02:26 GMT"],
["Vary", "Accept-Encoding"],
["Transfer-Encoding", "chunked"]
]
}
The response_payload_reference_key
stores the full body from the reply.
Both of them are stored as documents in Rossum and can be retrieved via API. There is an extension prepared for you, extracts important information from the response, key values which can be then stored to the Rossum annontation Data value extractor.
For sending original document file e.g in the API POST request use #{original_file}
For exampe this is useful when attachning original invoice file to existing invoice object in an ERP system. In the followoing exmaple the export_reference_key
is not used because it is not needed, we are senting only the original document file, not usinfg a previously generated payload.
{
"request": {
"url": "https://apiexport.myserver.com/attachment",
"method": "POST",
"content": "#{original_file}",
"headers": {
"Content-Type": "application/pdf"
}
},
"response_headers_reference_key": "api_attach_export_reply_headers",
"response_payload_reference_key": "api_attach_export_reply_payload"
}
You can use condition that controls whether the export is triggered. When it's empty or "false" (case insensitive), this section won't be evaluated. Otherwise, it will proceed. E.g. if the referred field is non-empty (!= ""
) it will start export and skip it if it is empty (== ""
). The condition definition follows the JSON templating syntax, e.g. "condition": "@{api_gate}"
.
Sending multipart/form-data
The following config will translate in an HTTP POST request with Content-Type: multipart/form-data
. Both file and additional data will be sent. For sending the file, the file_key
is used as a form-data name; filename
and content type are taken from the saved document.
{
"export_reference_key": "exported_annotation_csv",
"request": {
"url": "https://webhook.site/XXX-ZZZ",
"method": "POST",
"headers": {
"Authorization": "Bearer {secret.token}"
},
"file_name": "@{document_id}.json",
"file_key": "file",
"request_data": {
"other_field": "@{vendor}"
}
}
}
See also JSON templating.
Sending application/x-www-form-urlencoded
Specifically, this example is for Azure API Management:
{
"export_reference_key": "exported_annotation_csv",
"auth": {
"url": "",
"method": "POST",
"headers": {
"Ocp-Apim-Subscription-Key": "",
"Content-Type": "application/x-www-form-urlencoded"
},
"data": {
"grant_type": "",
"client_id": "",
"client_secret": "{secret.client_secret}",
"scope": ""
}
},
"request": {
"url": "",
"method": "POST",
"content": "#{file_content}",
"headers": {
"Content-Type": "application/json",
"Ocp-Apim-Subscription-Key": ""
}
}
}
Status Code Resolver
The status_code_resolver
is a tool that allows you to define error handling, that means how HTTP status codes from the API response are handled in Rossum.
- error: A list of status codes that should be considered as errors. They will cause the export process to fail and will be displayes as errors on the document in Rossum. The content of the error message is the content sent by the API.
- warning: A list of status codes that should be considered warnings. They will NOT cause the export process to fail, but will be shown as warning message. The content of the warning message is the content sent by the API.
- All other status codes will be considered successful.
By default when no error handling by status_code_resolver
is defined, all status codes are considered successful.
The resolver only applies to the export request, not the authentication request.
If you are using the OAuth2 authentication method, keep in mind that the hook uses the HTTP status code 401 (Unauthorized) to detect when authentication is required. So in that case, it will always try to authenticate first, regardless of the status code resolver. However, if the export request fails again after a successful authentication, the hook will consider the status code according to the resolver. For example, if you have 401 listed as an error status code, the export process will fail if the export request returns 401 after a successful authentication.
Example configuration with status code resolver:
{
"request": {
"url": "https://apiexport.yourserver.com/payload",
"method": "POST",
"content": "#{file_content}",
"headers": {
"Content-Type": "application/xml"
}
},
"export_reference_key": "export_annotation_to_xml_bas64",
"status_code_resolver": {
"error": [403, 500],
"warning": [201, 202, 204, 206]
},
"response_headers_reference_key": "api_xml_export_reply_headers",
"response_payload_reference_key": "api_xml_export_reply_payload"
}
Available configuration options
Export Object
The export object consists of the following parameters:
Attribute | Type | Description |
---|---|---|
export_reference_key | str | A unique key referencing the exported data prepared by the Custom format templating extension. |
request | object | Defines the REST API request (URL, method, headers, and body content). |
auth (optional) | object | Configuration for authentication, supporting OAuth2. |
condition (optional) | str | Reference to a schema_id in annotation.content controlling execution. When it's empty or "false" (case insensitive), this section won't be evaluated. Otherwise, it will proceed. The condition definition follows the JSON templating syntax e.g. "condition": "@{api_gate}" |
response_headers_reference_key (optional) | str | Key to store API response headers (including status_code ). |
response_payload_reference_key (optional) | str | Key to store the full response body from the API. |
status_code_resolver (optional) | object | Defines status code handling. |
Request Object
The request
object contains parameters defining the HTTP request:
Attribute | Type | Description |
---|---|---|
url | str | The target API endpoint URL. |
method | str | The HTTP method (POST , PUT , etc.). |
headers | object | HTTP headers for the request. |
content | str | The body of the request (supports placeholders like #{file_content} ). |
Authentication Object (auth
)
The authentication object defines how credentials are used to obtain an access token.
Attribute | Type | Description |
---|---|---|
url | str | The authentication endpoint URL. |
method | str | The HTTP method (POST , GET , etc.). |
headers | object | Headers for authentication request. |
data | object | Credentials and grant type for authentication. |
Status Code Resolver Object
Dictionary defining how to to handle different HTTP status codes in Rossum.
Attribute | Type | Description |
---|---|---|
error | list of integers | List of error status codes (export fails). |
warning | list of integers | List of warning status codes (export continues with warning). |