Skip to main content
GET
/
v2
/
vendor
/
integrations
/
shippo
Get Shippo Integration
curl --request GET \
  --url https://api.puppetvendors.com/v2/vendor/integrations/shippo \
  --header 'x-access-token: <api-key>'
V2 Alpha — This endpoint is part of the V2 API preview. Breaking changes may occur.

Overview

Retrieve the Shippo integration configuration for the authenticated vendor. API keys are returned masked for security.

Use Cases

  • Check integration status in vendor settings
  • Verify Shippo connection before fulfillment automation

Response

200
{
  "success": true,
  "data": {
    "integration": {
      "type": "shippo",
      "connected": true,
      "apiKey": "shippo_test_****...****abc1",
      "updatedAt": "2024-05-01T08:00:00.000Z"
    }
  }
}

Example

curl -X GET "https://api.puppetvendors.com/v2/vendor/integrations/shippo" \
  -H "x-access-token: YOUR_VENDOR_JWT_TOKEN"