Docs/Channel Manager

Connect a Channel

Connect your account to an OTA platform. Airbnb uses OAuth, other platforms use API credentials.

POST/v1/connect/:provider

Parameters

providerstringRequired

Platform: airbnb, booking, vrbo, plumguide

clientIdstring

API client ID (for credential-based auth)

clientSecretstring

API client secret

redirectUrlstring

OAuth 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