ForSURE.orders.connectors.shopify.shopify_connector_endpoints

baseURL = '{domain}/saas/live/shopify'

Base URL for all requests

POST {baseURL}/config
async def config()

Post the configuration for shopify as shown below to allow us to automatically fetch data from your store.

Parameters
  • profile: int containing the profile ID
  • store_config:

    {
        "store_url":"https://ab15eg.myshopify.com",
        "api_token":"shpat_..."
     }
    
Returns

Successful response

{
    "status": "success"
}

Invalid API Token

{
    "status": "failed",
     "detail": "Invalid API Token"
}