Skip to main content
PUT
/
v2
/
vendor
/
integrations
/
shipstation
Update ShipStation Integration
curl --request PUT \
  --url https://api.puppetvendors.com/v2/vendor/integrations/shipstation \
  --header 'Content-Type: application/json' \
  --header 'x-access-token: <api-key>' \
  --data '
{
  "apiKey": "<string>",
  "apiSecret": "<string>"
}
'
V2 Alpha — This endpoint is part of the V2 API preview. Breaking changes may occur.

Overview

Set or update the ShipStation API credentials for order sync and shipping automation.

Request Body

apiKey
string
required
ShipStation API key.
apiSecret
string
required
ShipStation API secret.

Response

200
{
  "success": true,
  "data": {
    "integration": {
      "type": "shipstation",
      "connected": true,
      "updatedAt": "2024-06-15T10:00:00.000Z"
    }
  }
}

Example

curl -X PUT https://api.puppetvendors.com/v2/vendor/integrations/shipstation \
  -H "Content-Type: application/json" \
  -H "x-access-token: YOUR_VENDOR_JWT_TOKEN" \
  -d '{
    "apiKey": "abc123def456",
    "apiSecret": "secret789xyz"
  }'