Get a booking form by ID
curl --request GET \
--url https://api.letsdothis.com/v0/booking-forms/{id} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.letsdothis.com/v0/booking-forms/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.letsdothis.com/v0/booking-forms/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"id": "6651a3e8f2b47c0019d3a8c1",
"title": "10k Entry Form"
}{
"statusCode": 404,
"error": "<string>",
"message": "<string>"
}Booking forms
Get a booking form by ID
Returns a single booking form by ID if it belongs to the organizer associated with your Public API credentials.
GET
/
v0
/
booking-forms
/
{id}
Get a booking form by ID
curl --request GET \
--url https://api.letsdothis.com/v0/booking-forms/{id} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.letsdothis.com/v0/booking-forms/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.letsdothis.com/v0/booking-forms/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"id": "6651a3e8f2b47c0019d3a8c1",
"title": "10k Entry Form"
}{
"statusCode": 404,
"error": "<string>",
"message": "<string>"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
The ID of the resource to query by
Was this page helpful?

