cURL
curl --request PUT \ --url https://api.puppetvendors.com/v2/vendor/integrations/shippo \ --header 'Content-Type: application/json' \ --header 'x-access-token: <api-key>' \ --data ' { "apiKey": "<string>" } '
Configure or update the vendor’s Shippo integration
{ "success": true, "data": { "integration": { "type": "shippo", "connected": true, "updatedAt": "2024-06-15T10:00:00.000Z" } } }
curl -X PUT https://api.puppetvendors.com/v2/vendor/integrations/shippo \ -H "Content-Type: application/json" \ -H "x-access-token: YOUR_VENDOR_JWT_TOKEN" \ -d '{ "apiKey": "shippo_test_abc123def456" }'