Skip to main content
POST
/
store
/
shopify
/
{altId}
Toggle Shopify Import and Sync
curl --request POST \
  --url https://services.leadconnectorhq.com/store/shopify/{altId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "syncConfig": {
    "orderReceivedTrigger": true,
    "paymentReceivedTrigger": true,
    "contacts": true,
    "products": true,
    "orders": true,
    "transactions": true,
    "collections": true
  },
  "importConfig": {
    "orderReceivedTrigger": true,
    "paymentReceivedTrigger": true,
    "contacts": true,
    "products": true,
    "orders": true,
    "transactions": true,
    "collections": true
  }
}
'
{
  "status": true,
  "message": "Successfully created"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
syncConfig
object
required
importConfig
object

Response

Successful response

status
boolean
required

Status of api action

Example:

true

message
string

Success message

Example:

"Successfully created"

Last modified on March 4, 2026