Connect a Channel
Connect your account to an OTA platform. Airbnb uses OAuth, other platforms use API credentials.
POST
/v1/connect/:providerParameters
providerstringRequiredPlatform: airbnb, booking, vrbo, plumguide
clientIdstringAPI client ID (for credential-based auth)
clientSecretstringAPI client secret
redirectUrlstringOAuth redirect URL (Airbnb only)
Example
curl -X POST https://api.repull.dev/v1/connect/airbnb \
-H "Authorization: Bearer sk_test_YOUR_KEY" \
-d '{"redirectUrl": "https://your-app.com/callback"}'AI