Skip to main content
GET
/
v1
/
brands
/
{brandId}
/
experiences
/
{experienceId}
/
settings
Get experience settings
curl --request GET \
  --url https://api.letsway.com/v1/brands/{brandId}/experiences/{experienceId}/settings
{
  "id": "exp-settings-123",
  "bookingForm": [
    {
      "scope": "guest",
      "fields": {
        "emailAddress": {
          "isRequired": true,
          "isActive": true
        },
        "phoneNumber": {
          "isRequired": true,
          "isActive": true
        }
      }
    }
  ],
  "isCurated": true
}

Path Parameters

experienceId
string

Response

201 - application/json

Get experience settings

id
string
required

The unique identifier of the experience settings

Example:

"exp-settings-123"

bookingForm
object[]

The booking form configuration

isCurated
boolean

Indicates if the experience is curated

Example:

true