Skip to content

How it works

Common pointers on how to install and use our Custom Connectors.

Be sure to read the introduction as well.

Claris Connect is not a programming language, but rather a connector of APIs. Because of this, our utility connectors need a backend server in order to do anything, just like all other connectors out there. We host this backend for you, taking data protection seriously, as an EU-based company.

We ask you to obtain a license token and some action credits to use the connectors. We charge the small fee of €10 per 500 credits per month. For example, this amount of credits allows you to validate 500 credit card numbers, generate over 160 barcodes, or render 100 PDF documents.

Get access

Currently, registration is a manual process. We will of course automate this using Claris Connect in the near future! For now, please fill out this form. We would love to hear from you and will give you access as soon as we can.

Missing a connector in the collection? We will add a new one to our collection for free each month. Let us know here what you would like a connector for.

Check your current usage

TL;DR: navigate to this page in Claris Connect, click “Create a new connector”, paste the copied JSON object, input your authentication credentials, and click “Create connector”.

Click to expand detailed instructions
  1. Copy the latest version of a custom connector.

  2. Navigate to this page in Claris Connect and click “Create a new connector”.

  3. Paste the content of the copied JSON file into the text editor and click the green “Save & Test” button at the bottom of the page.

    Connector editor

  4. Click the grey “Sign In” button next to “Authentication”. You will asked for authentication credentials; please consult the documentation of your connector for more information on these.

    Credentials

  5. Then, click “Test”. A test connection is set up. If it is working, you should see “test connection successful”. If not, please double-check your credentials and try again.

    Test request

  6. Now, click “Create Connector” at the bottom and confirm by clicking “Publish”.

    Confirm

Almost the entire modern internet uses JSON for machine-to-machine communication, Claris Connect being no exception. Hence, the responses from out Custom Connectors are also JSON-encoded, but Claris Connect lets you easily extract the information you need.

JSON element picker

Our connectors always return the following keys:

  • ok: true or false, depending on whether the request was successfully processed or not.
  • detail: if ok is false, this key will contain an error message. It will not be included in successful responses.

Some connectors produce files (like PDFs or barcodes). In that case, it returns an outputURL which points to the generated file.

Example outputURL
https://connector-backend.smartyellow.net/artefacts/8f7f69af-a809-423d-bfae-2f2b78a5ec6c.png

The reason for this is that Claris Connect does not have the concept of files. Its default connectors, for example the Dropbox and ZIP connectors, work around this by returning and accepting public URLs to resources that the connector needs access to and produces.