HTTP Target - Ironstream_Hub - 1.3.0

Ironstream Hub Administration

Product type
Software
Portfolio
Integrate
Product family
Ironstream
Product
Ironstream > Ironstream Hub
Version
1.3.0
Language
English
ContentType
Administration
Product name
Ironstream Hub
Title
Ironstream Hub Administration
Topic type
Administration
First publish date
2022

This target allows you to directly connect to a system using HTTPS or HTTP protocols.

If ConnectorType is set to HttpClient, a parent field named HttpClientConfiguration must be populated with sets of fields as shown below. If you do not enter sufficient properties or if they contain invalid values, the target will be invalid and the pipeline will not start.

Fields Description Valid Values
URL The full URL for the target. Any valid HTTP or HTTPS URL
Verb Action to take at the target. GET or POST
TimeoutInSeconds How long to wait to get a response from the URL. An integer number from 0 to 3600. 0 means 'no timeout, wait for ever'
Headers A list of pairs of Name and Value items providing information to be sent in the HTTP(S) header that are expected or required by the target. Each Name must be a valid JSON key name.
Example:
{
  "Name": "Q_HttpCLient",
  "Id": "618b1470-ee3e-4ae1-a64a-50375a99d542",
  "HttpClientConfiguration": {
    "URL":"https://api.bigpanda.io/data/v2/alerts",
    "Verb":"POST",
    "TimeoutInSeconds":60,
    "Headers": [
       {"Name":"Content-Type", "Value":"application/json" },
       { "Name":"Authorization",  "Value":"Bearer 4e7f144b6e1040773b13a4cc46431d4f" }
               ]
  },
  "ConnectorType": "HttpClient"
}