Single Sign On

Generate Single Sign On (SSO) links to allow your users to log in to botisimo with your service. Must have an enterprise team account on Botisimo.

API Endpoint

The API is located at the following URL:

https://botisimo.com/api/v1/guild

Authenticating Requests

Authenticated requests should include a Client ID generated from your Botisimo account profile as a header on the request client-id

const response = await axios.get('https://botisimo.com/api/v1/guild/sso?email=joe.someone@example.com&id=1234567890', {
   headers: {
      'client-id': 'xxxxx-xxxxx-xxxxx-xxxxx',
   },
});

Errors

Any errors will be returned with a non-2XX status code.

Response

Field Type Description
message string The message describing the error

Example

{
   message: "An error has occurred"
}