Add authentication with BasicAuth
Activate BasicAuth authentication for webhooks.
Path parameters
-
The unique code assigned to the reservation platform.
Maximum length is
11
. Format should match the following pattern:[a-zA-Z0-9_-]+
.
PATCH /reservation/api/1/platform/{platform-code}/webhook/auth/basic-auth
curl \
-X PATCH https://api.lsk.lightspeed.app/reservation/api/1/platform/MyPlatform/webhook/auth/basic-auth \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"password":"Example-Password","username":"LightspeedKSeries"}'
Request examples
{
"password": "Example-Password",
"username": "LightspeedKSeries"
}