Introduction to Web API

Web API is a set of tools for integrating the platform with external systems.

General information

  • The API works via the HTTPS protocol using HTTP requests such as POST, GET, PUT, etc.
  • Authorization is performed via a token.
  • All the data is available only in the JSON format.
  • The base URL is https://{company}.brix365.eu/pub/v1.
  • Data queries are possible from any system.

The size of a web request must not exceed 50 MB.

You can learn about all available API methods in the Public Web API article.

If needed, you can also add your own API methods using custom modules. Read more about it in the official BRIX documentation.

Testing requests

You can check whether your request is valid in BRIX. To do this, open the list of main API methods available for a component:

  • For an app, contract, or report: click the gear icon next to its name. In the menu that appears, select API.

  • For a process: in the business process designer, open the Settings > API tab.

In the list that opens, expand the block containing the API method you want to test. During testing, you can specify input values or compose the request body using a predefined template. You will receive:

  • The request URL including the path parameters.
  • The server’s response code and body.

Please note that test requests are executed in the system. For example, when testing API methods for creating or editing app items, the data will actually be modified.

For more information, see the official BRIX documentation.