Create and Configure HTTP Endpoint HTTPClient

HTTP endpoint represents an external application, which supports integration by using HTTP protocol. Using the HTTPClient component, Contineo developers can configure the HTTP endpoint where third-party services are available.


Steps

  1. Click <Application Name> → Settings → +

  2. Enter a unique component name.

  3. Select type: HttpClient

  4. Click OK

    Create HTTP Client

  5. Open the Properties Panel by clicking the component name.

  6. Click Connection Properties.

  7. Enter the Base URL of the application that provides services using the HTTP protocol.

  8. Click Save.

    Configure HTTP Client


Notes

  1. Base URL: Format — http(s)://<Server Name or IP Address>:<Port Number> Example: For the weather API, the full URL might be: https://api.openweathermap.org/data/2.5/weather?lat=<latitude>&lon=<longitude>&appid=<API key> In this case, the Base URL is: https://api.openweathermap.org

  2. Headers: If the endpoint requires common headers such as Authorization or Content-Type, enter them as a JSON object. Example:

    {"Content-Type":"application/x-www-form-urlencoded","Authorization":"Bearer <your_token>"}