POST
/
{env_id}
/
{flow_id}
/
{tenant}
/
connectors
/
{connector_id}
curl --request POST \
  --url https://client-api.hotglue.xyz/{env_id}/{flow_id}/{tenant}/connectors/{connector_id} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "data": {},
  "stream": "Products"
}'
{
  "success": true,
  "id": "gid://shopify/Product/8748663374044"
}

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

Body

application/json
data
object

The unified object you want to post to a connector

stream
string

The stream name of the unified object you are posting

Example:

"Products"

Response

200
application/json
200
success
boolean

Indicates if the record was successfully posted

Example:

true

id
string

The remote ID of the posted record

Example:

"gid://shopify/Product/8748663374044"