ForSURE.dataLive.connectors.shopify.shopify_connector_endpoints

baseURL = '/live/shopify'

Base URL for all requests

GET {baseURL}/config?profile={ID}
async def get_config()

Get the configuration for the shopify connector.

Parameters
  • profile: int containing the profile ID
Returns

Successful response
    [
        {
            "title": "Store URL",
            "key": "store_url",
            "value": "https://ab15eg.myshopify.com",
            "info": "URL of the shopify store",
            "checkbox": null,
            "checkbox_info": ""
        },
        {
            "title": "API Token",
            "key": "api_token",
            "value": "shpat_...",
            "info": "API token needed to connect to the store",
            "checkbox": null,
            "checkbox_info": ""
        }
    ]
    

POST {baseURL}/config?profile={ID}
async def config()

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

Parameters
Returns

True if successful, else False