cURL
curl --request GET \
--url https://api.vambe.me/api/public/booking-url/{urlName}const options = {method: 'GET'};
fetch('https://api.vambe.me/api/public/booking-url/{urlName}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.vambe.me/api/public/booking-url/{urlName}"
response = requests.get(url)
print(response.text)Booking API
Get booking page configuration
GET
/
api
/
public
/
booking-url
/
{urlName}
cURL
curl --request GET \
--url https://api.vambe.me/api/public/booking-url/{urlName}const options = {method: 'GET'};
fetch('https://api.vambe.me/api/public/booking-url/{urlName}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.vambe.me/api/public/booking-url/{urlName}"
response = requests.get(url)
print(response.text)Path Parameters
Required string length:
3 - 50Response
200 - undefined
Was this page helpful?
⌘I
