Fortanix Authentication API

APIs regarding creating or ending a session.

Operations 2

POST /api/v1/iam/session/oauth2/token Authenticate with a token. #
POST /api/v1/iam/session/terminate Terminate the current session. #

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/fortanix-authentication-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

fortanix-authentication-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: '**API of the Fortanix Unified Data and AI Security Platform**


    The API client *must* follow HTTP redirects, including 308 redirects. Many HTTP libraries (such as Python Requests, JavaScript fetch) do this by default. With cURL, you must pass `--location`.

    '
  title: Armor Authentication API
  version: 0.1.0
servers:
- url: https://api.armor.fortanix.com
tags:
- description: APIs regarding creating or ending a session.
  name: Authentication
paths:
  /api/v1/iam/session/oauth2/token:
    post:
      description: 'Authenticate using the Oauth 2.0 Client Credentials flow.


        To call this you must provide the form url encoded app ID and the form url encoded API key in the form of a Basic auth header.

        '
      operationId: OauthToken
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              properties:
                grant_type:
                  enum:
                  - client_credentials
                  type: string
        description: Conforms to RFC 6749 Section 4.4.2.
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OauthTokenResponse'
          description: Success result.
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OauthTokenError'
          description: Invalid credentials.
      summary: Authenticate with a token.
      tags:
      - Authentication
  /api/v1/iam/session/terminate:
    post:
      description: Terminate the current session.
      operationId: Terminate
      responses:
        '204':
          description: Nothing is returned on success.
      security:
      - Oauth2ClientCredentials: []
      summary: Terminate the current session.
      tags:
      - Authentication
components:
  schemas:
    OauthTokenError:
      properties:
        error:
          $ref: '#/components/schemas/OauthTokenErrorCode'
        error_description:
          type: string
        error_uri:
          type: string
      required:
      - error
      - error_description
      type: object
    OauthTokenErrorCode:
      description: Conforms to RFC 6749 Section 5.2.
      enum:
      - invalid_client
      - invalid_grant
      - invalid_request
      - invalid_scope
      - unauthorized_client
      - unsupported_grant_type
      type: string
    OauthTokenResponse:
      example:
        access_token: 2YotnFZFEjr1zCsicMWpAA
        expires_in: 3600
        token_type: Bearer
      properties:
        access_token:
          type: string
        expires_in:
          description: Token lifetime in seconds.
          type: integer
        token_type:
          type: string
      required:
      - access_token
      - token_type
      - expires_in
      type: object
  securitySchemes:
    Oauth2ClientCredentials:
      description: OAuth 2.0 client credential flow, see https://datatracker.ietf.org/doc/html/rfc6749#section-4.4.
      flows:
        clientCredentials:
          scopes: {}
          tokenUrl: https://api.armor.fortanix.com/api/v1/iam/session/oauth2/token
      type: oauth2