Docs/Channels/Plumguide

Plumguide Pricing

Set seasonal pricing and cleaning fees on Plumguide.

PUT/v1/channels/plumguide/pricing

Example

# Set seasonal pricing
curl -X PUT https://api.repull.dev/v1/channels/plumguide/pricing \
  -H "Authorization: Bearer sk_test_YOUR_KEY" \
  -d '{"listingId": 123, "rates": [{"startDate": "2026-06-01", "endDate": "2026-08-31", "nightlyRate": 250}]}'

# Set cleaning fee
curl -X PUT https://api.repull.dev/v1/channels/plumguide/pricing \
  -H "Authorization: Bearer sk_test_YOUR_KEY" \
  -d '{"listingId": 123, "cleaningFee": 75}'
AI