Airbnb Alterations
Create, list, and manage guest-initiated reservation changes (date changes, guest count updates).
GET
/v1/channels/airbnb/alterationsExample
# List pending alterations
curl https://api.repull.dev/v1/channels/airbnb/alterations \
-H "Authorization: Bearer sk_test_YOUR_KEY"
# Accept an alteration
curl -X POST https://api.repull.dev/v1/channels/airbnb/alterations \
-H "Authorization: Bearer sk_test_YOUR_KEY" \
-d '{"alterationId": "ALT_123", "action": "accept"}'AI