Skip to main content

Overview

To end a user’s session and log them out, use the /auth/signout endpoint.

Example Request

  curl --location --request POST 'https://my-project.fastgenapp.com/auth/signout'
import requests

url = "https://my-project.fastgenapp.com/auth/signout"
payload={}
headers = {}

response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)