REST API

REST API


Data stored in SalureConnect can be queried via REST APIs. This article contains a description of how to invoke the REST APIs and what the possible endpoints are.

Authorization

Before it is possible to invoke the REST API, the user must receive a token from the application administrator. How to create this token is described in the article "Creating an API Token".
  • The base URL of the API is:https://salureconnect.com/api/v1/;
  • Two tokens must be specified to authorize calls. These are added as header:
    • Authorization: salureToken <token>;
    • salure-customer: <Customer>.
To know which customer to put in the salure-customer header, the user can call the endpoint /customers/. To call this endpoint, the salure-customer header does not need to be provided. The response to this call returns the possible values that the user can enter in the salure-customer header.

Endpoints

The callable endpoints can be viewed at https://salureconnect.com/api/api-docs/.




    • Related Articles

    • Creating an API token

      For the most part, the data stored in SalureConnect can also be retrieved via REST APIs. Of course, authorization also applies here. This article describes how to create an API token. The article "REST API"  describes how the REST API can actually be ...
    • Create API token

      For the most part, the data stored in BrynQ can also be retrieved via REST APIs. Of course, authorization also applies here. This article describes how to create an API token. The article "REST API" describes how the REST API can actually be used. ...
    • Upload files

      Sometimes it is convenient to load an Excel or CSV file into a dashboard. At that point, "File Upload" can help.  Add a file When the user wants to add a file, they can do so on the "File Upload" page. By clicking the "Add File" button at the top ...
    • Single Sign On with AFAS Insite

      It is possible to display the BrynQ dashboard in AFAS Insite, so you can, for example, open dashboards in Insite without having to log in separately again. The condition is that the AFAS user code is the same as the user code in BrynQ. Follow the ...
    • Security

      SalureConnect'sagent is a web server without a front-end. This means that security issues suchas CORS, XSS, CSRF etc. are not applicable. The main security issues are authentication,encryption and rate-limiting. Authenticatie A request to the agent ...