Skip to main content
POST
/
v6
/
config
/
integrations
/
shopify
Configure Shopify
curl --request POST \
  --url https://sandbox.tight.com/v6/config/integrations/shopify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "apiKey": "<string>",
  "apiSecret": "<string>"
}
'
{
  "result": "SUCCESS",
  "data": {
    "apiKey": "<string>",
    "apiSecret": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is a partner-level token.

Body

application/json
apiKey
string
required

Shopify API Key for authentication.

apiSecret
string
required

Shopify API Secret for authentication.

Response

Success

result
enum<string>

The result of the action performed.

Available options:
SUCCESS,
FAILURE
data
object