Signout-link for signin widget

I’m look at the github code for the signin widget and the .signout() function is simulating a click() on the ‘signout-link’, which is the el.(‘signout-link’).
Can someone please provide the default ‘signout-link’ that is being .click() in the signin widget?

As a follow-up question, is the signout functionality of the signin widget hitting {org-name}.okta.com/session/me via DELETE method and removing the session then redirecting back via the redirect URI in the app general settings?

Hi @EmployeeAskingHelp

When clicking the sign out link, the widget does a POST request to /api/v1/authn/cancel with the current state token in order to stop the current log in process.

You can find more details about this operation here.