Skip to main content
POST
https://searchcompany-main.up.railway.app
/
api
/
shopify
/
disconnect
/
{org_slug}
Disconnect Shopify
curl --request POST \
  --url https://searchcompany-main.up.railway.app/api/shopify/disconnect/{org_slug}
{
  "connected": true,
  "shop_domain": "<string>"
}

Disconnect Shopify

Disconnects the Shopify store from the organization.

Path Parameters

org_slug
string
required
The organization slug

Response

connected
boolean
Always false after disconnect
shop_domain
string
Always null after disconnect

Example

curl -X POST https://api.searchcompany.ai/api/shopify/disconnect/my-org-slug \
  -H "Authorization: Bearer <token>"
{
  "connected": false,
  "shop_domain": null
}