3.1.0 Automate
HomeIntegrityControlSolutionsManagement Center
  • Introduction
  • About this release
    • Release notes
    • Breaking changes
  • Flow of the request
  • Sending data to the API
  • Authenticating the client
  • Installation
  • Configuration API
    • Examples
  • Scheduler
Powered by GitBook
On this page
Export as PDF

Installation

API server can be installed on Windows x64, Linux x64 or in a container environment.

PreviousAuthenticating the clientNextConfiguration API

Instructions and information can be found .

Verifying base installation

If running in container environment be sure to expose container port 8080.

Execute HTTP-POST to http://<host_or_ip>/api/demo/?secret=password

Response should look:

{
    "success": true,
    "data": {
        "items": [
            {
                "id": "result",
                "properties": {
                    "message": "This is the result from the API demo impl pipe"
                }
            }
        ]
    }
}

here