Alianza SSO API

The SSO API from Alianza — 1 operation(s) for sso.

Operations 2

GET /v2/authorize/sso Get SSO data #
POST /v2/authorize/sso Authorization Code Exchange #

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/alianza-sso-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

alianza-sso-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Alianza SSO API
  version: '2'
  description: 'Operations tagged SSO across 2 of this provider''s published API definitions: alianza-apidocs-swagger2-original.json, alianza-sso-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.d2.alianza.com
  description: Base URL reconciled from _original
tags:
- name: SSO
paths:
  /v2/authorize/sso:
    get:
      tags:
      - SSO
      summary: Get SSO data
      description: Returns data needed for the UI to initiate Single Sign On
      operationId: getClientId
      responses:
        '200':
          description: successful operation
          responseSchema:
            originalRef: SsoDataX
            $ref: '#/components/schemas/SsoDataX'
          content:
            application/json:
              schema:
                originalRef: SsoDataX
                $ref: '#/components/schemas/SsoDataX'
      responsesObject:
        '200':
          description: successful operation
          responseSchema:
            originalRef: SsoDataX
            $ref: '#/components/schemas/SsoDataX'
          schema:
            originalRef: SsoDataX
            $ref: '#/components/schemas/SsoDataX'
    post:
      tags:
      - SSO
      summary: Authorization Code Exchange
      description: Pass the SSO response authorization code here to exchange it for a api authorization token
      operationId: getLoginInfo_1
      parameters:
      - name: code
        in: query
        required: false
        schema:
          type: string
      - name: redirect_uri
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          responseSchema:
            originalRef: LoginTokenX
            $ref: '#/components/schemas/LoginTokenX'
          content:
            application/json:
              schema:
                originalRef: LoginTokenX
                $ref: '#/components/schemas/LoginTokenX'
      responsesObject:
        '200':
          description: successful operation
          responseSchema:
            originalRef: LoginTokenX
            $ref: '#/components/schemas/LoginTokenX'
          schema:
            originalRef: LoginTokenX
            $ref: '#/components/schemas/LoginTokenX'
components:
  schemas:
    LoginTokenX:
      type: object
      properties:
        authToken:
          type: string
        userId:
          type: string
        userType:
          type: string
          enum:
          - AccountUser
          - EndUser
          - ManagementUser
          - AlianzaUser
          - BusinessLines
        endUserType:
          type: string
          enum:
          - ADMIN
          - ADVANCED_ADMIN
          - BASIC_ADMIN
          - STANDARD
          - STANDARD_ADMIN
          - SUPER_ADMIN
        username:
          type: string
        firstName:
          type: string
        lastName:
          type: string
        emailAddress:
          type: string
        partitionId:
          type: string
        partitionName:
          type: string
        accountId:
          type: string
        permissions:
          type: object
          additionalProperties:
            type: string
            enum:
            - NONE
            - READ_MYUSER
            - READ
            - EDIT_MYUSER
            - EDIT
            - CREATE_MYUSER
            - CREATE
            - DELETE_MYUSER
            - DELETE
            - DENIED
        featureToggles:
          type: object
          additionalProperties:
            type: boolean
        mustChangePassword:
          type: boolean
        subPartitionIds:
          type: array
          uniqueItems: true
          items:
            type: string
        tokenSource:
          type: string
        grantedAuthorities:
          type: array
          uniqueItems: true
          items:
            type: string
        mustAddEmail:
          type: boolean
        pwdHash:
          type: string
        maxLifeInHours:
          type: integer
          format: int32
        groupId:
          type: string
        groupName:
          type: string
    SsoDataX:
      type: object
      properties:
        clientId:
          type: string
        ssoUrl:
          type: string
x-refined-from:
- alianza-apidocs-swagger2-original.json
- alianza-sso-api-openapi.yml