Skip to main content
PUT
/
integrations
/
shippo
Shippo
curl --request PUT \
  --url https://staging-api.puppetvendors.com/integrations/shippo \
  --header 'Content-Type: application/json' \
  --header 'x-access-token: <api-key>' \
  --data '
{
  "apiKey": "<string>"
}
'

Documentation Index

Fetch the complete documentation index at: https://dev.puppetvendors.com/llms.txt

Use this file to discover all available pages before exploring further.

V2 Alpha — This endpoint is part of the V2 API preview. Breaking changes may occur.

Overview

Set or update the Shippo API key for shipping label generation and tracking.

Request Body

apiKey
string
required
Shippo API key.

Response

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

Example

curl -X PUT https://staging-api.puppetvendors.com/integrations/shippo \
  -H "Content-Type: application/json" \
  -H "x-access-token: YOUR_VENDOR_JWT_TOKEN" \
  -d '{
    "apiKey": "shippo_test_abc123def456"
  }'