POST
/
{env_id}
/
{flow_id}
/
{tenant}
/
connectors
/
{connector_id}
/
{stream}
curl --request POST \
  --url https://client-api.hotglue.xyz/{env_id}/{flow_id}/{tenant}/connectors/{connector_id}/{stream} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "data": {},
  "async": false
}'
{
  "async": false,
  "jobId": "UvzWy0",
  "taskId": "3cecd80d-b377-4566-9d8c-e1e870b887ab",
  "state": {
    "bookmarks": {
      "Contact": [
        {
          "hash": "07f9838d07fca662ce396d1cce9db0893eb3ffee4290ffc20d992a8fde333e2e",
          "success": false,
          "error": "[{\"message\":\"No such column 'EmailAddress' on sobject of type Contact\",\"errorCode\":\"INVALID_FIELD\"}]"
        }
      ]
    },
    "summary": {
      "Contact": {
        "success": 0,
        "fail": 1,
        "existing": 0,
        "updated": 0
      }
    }
  },
  "logs": "..."
}

Authorizations

x-api-key
string
header
required

Path Parameters

env_id
string
required

ID of environment

flow_id
string
required

ID of flow

tenant
string
required

ID of tenant

connector_id
string
required

ID of connector

stream
string
required

Stream name

Body

application/json
data
object

The object you want to post to a connector

async
boolean
default:false

Whether to post the data asynchronously

Example:

false

Response

200
application/json
200
async
boolean

Indicates whether the job is asynchronous

Example:

false

jobId
string

A unique job identifier

Example:

"UvzWy0"

taskId
string

A unique task identifier

Example:

"3cecd80d-b377-4566-9d8c-e1e870b887ab"

state
object
logs
string

Optional logs for debugging or processing information

Example:

"..."