Inbound Integration: Create complete golf travel packages
Learn how to combine golf bookings with hotels, transfers, and activities from Camino Network to create complete travel packages.
🎯 Overview
Create packages that include:
- Golf - Tee times from GG365
- Hotels - Accommodation from Camino Messenger
- Transfers - Ground transportation
- Activities - Tours and experiences
- Package NFT - Single NFT for entire package
📦 Package Types
Golf + Hotel
- Multiple rounds of golf
- Hotel accommodation
- Single package price
Golf Week
- 7 days of golf
- Hotel + breakfast
- Airport transfers
- Package NFT
Golf Tournament
- Tournament entry
- Practice rounds
- Hotel accommodation
- Gala dinner
🔗 Creating Packages
import { GG365PackageBuilder } from '@gg365/blockchain-sdk';
const builder = new GG365PackageBuilder({
network: 'camino',
wallet: yourWallet
});
// Build package
const package = await builder.createPackage({
name: 'Costa del Sol Golf Week',
description: '7 days of golf in southern Spain',
components: {
golf: [
{ courseId: 'gg365-course-12345', date: '2025-12-16' },
{ courseId: 'gg365-course-67890', date: '2025-12-18' },
{ courseId: 'gg365-course-11111', date: '2025-12-20' }
],
hotel: {
hotelId: 'camino-hotel-99999',
checkIn: '2025-12-15',
checkOut: '2025-12-22',
nights: 7
},
transfers: [
{ type: 'airport-pickup', date: '2025-12-15' },
{ type: 'airport-dropoff', date: '2025-12-22' }
]
},
pricing: {
basePrice: 2499.00,
currency: 'EUR',
priceType: 'per_person'
},
blockchain: {
smartContract: true,
packageNFT: true,
fractionalOwnership: false
}
});
console.log('Package created:', package.id);
console.log('Package NFT:', package.blockchain.nftTicket.tokenId);
📚 Learn More
Status: 🚧 Detailed documentation coming soon!
For immediate assistance, contact: [email protected]
Last modified on