Reference
Manage your gateway registration, update information, and monitor discovery metrics.
1curl -X PATCH https://registry.betterdata.co/api/gateways/gw_123 \2 -H "Authorization: Bearer YOUR_API_KEY" \3 -H "Content-Type: application/json" \4 -d '{5 "description": "Updated description",6 "logo_url": "https://yourstore.com/new-logo.png",7 "categories": ["beauty", "skincare"]8 }'1curl -X GET https://registry.betterdata.co/api/gateways/gw_123 \2 -H "Authorization: Bearer YOUR_API_KEY"Response:
1{2 "id": "gw_123",3 "brand_name": "Your Brand",4 "domain": "yourstore.com",5 "endpoint": "https://gateway.betterdata.co/v1/your-gateway-id",6 "verified": true,7 "status": "active",8 "discovery_count": 1250,9 "last_discovered": "2024-01-15T14:30:00Z",10 "created_at": "2024-01-10T10:00:00Z",11 "updated_at": "2024-01-15T14:30:00Z"12}View discovery metrics:
1curl -X POST https://registry.betterdata.co/api/gateways/gw_123/deactivate \2 -H "Authorization: Bearer YOUR_API_KEY"