Genialis Saml Auth API

The saml-auth API from Genialis — 3 operation(s) for saml-auth.

Operations 3

POST /saml-auth/api-login/ #
GET /saml-auth/remote-login/auth-id/ #
GET /saml-auth/remote-login/poll/ #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/genialis-saml-auth-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

genialis-saml-auth-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Genialis base Saml Auth API
  version: 0.0.0
  description: Backend of the Genialis platform.
servers:
- url: https://app.genialis.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: saml-auth
paths:
  /saml-auth/api-login/:
    post:
      operationId: saml_auth_api_login_create
      description: Attempt to perform automatic login.
      tags:
      - saml-auth
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApiLogin'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/ApiLogin'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/ApiLogin'
        required: true
      security:
      - cookieAuth: []
      - {}
      responses:
        '204':
          description: No response body
  /saml-auth/remote-login/auth-id/:
    get:
      operationId: saml_auth_remote_login_auth_id_retrieve
      description: Generate a cryptographically secure auth_id token.
      tags:
      - saml-auth
      security:
      - cookieAuth: []
      - {}
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IdGenerator'
          description: ''
  /saml-auth/remote-login/poll/:
    get:
      operationId: saml_auth_remote_login_poll_retrieve
      description: Poll the redis server for authentication data.
      parameters:
      - in: cookie
        name: auth_id
        schema:
          type: string
        required: true
      tags:
      - saml-auth
      security:
      - cookieAuth: []
      - {}
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CredentialsPoll'
          description: ''
        '204':
          description: No response body
components:
  schemas:
    CredentialsPoll:
      type: object
      description: Serializer for CredentialsPollView.
      properties:
        sessionid:
          type: string
        csrftoken:
          type: string
      required:
      - csrftoken
      - sessionid
    ApiLogin:
      type: object
      description: Deserializer for login credentials.
      properties:
        email:
          type: string
          format: email
        password:
          type: string
      required:
      - email
      - password
    IdGenerator:
      type: object
      description: Serializer for IdGeneratorView.
      properties:
        auth_id:
          type: string
          readOnly: true
      required:
      - auth_id
  securitySchemes:
    cookieAuth:
      type: apiKey
      in: cookie
      name: sessionid