I am new to Sales Force and I want a newly created Lightning Web Component to be accessible by url to outside clients. I'm adding to an existing SalesForce instance.
We have several existing lwc in our code base, two of which are accessible by url to outside clients. The both follow a similar pattern:
[organization url] /schedule/s/self? [query params] (name of lwc "selfSchedule")
[organization url] /schedule/s/opt-out? [query params] (name of lwc "subscriptionOptOut")
I want to do something similar with the new component, but I don't understand where the middle values are coming from or where they are defined. I'm not sure why it's "schedule" nor have I been able to reason where "self" and "opt-out" come from. Will the center value always be s?
I have looked in the GUI as well as the files in the code base for a place where these values are defined to no avail.
Can someone please offer guidance in where to find/define the middle URL values so that I can properly reference them?