Getting started


Before you start

The "Legal App Factory" is designed for developers, engineers, or anyone else who's comfortable creating custom-coded solutions or integrating with platforms. If you think you may need some help integrating with the "Legal App Factory" do not hesitate to contact one of our experts.

In order to use any functionality of the "Legal App Factory", the first thing you need to do is to register and be logged in. For that, please go to the registration page and create a developer account in our portal.

Authorization

After you have successfully registered and you are logged in, you have to be authorized by our team to be able to use the API.
For that, you can request a client identifier and a client secret. We will provide you also a login URL for your client.

Login

Once you have received the client identifier and a client secret, you are ready to do login in the platform.

POST https://{login_url}?grant_type=client_credentials&client_id={{clientId}}&client_secret={{clientSecret}}&scope=token

With the following information provided as query params:

"client_id": "{{clientId}}"
"client_secret": "{{clientSecret}}"
"scope": "token"
"grant_type": "client_credentials"

Acess token

In the login response, you will receive an access token. This token must be passed as an authorization HTTP header in any interaction with the API:

Authorization: Bearer {access_token_here}