# Single Sign On (SSO)

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v0/partner/enKashCard/sso-token:
    post:
      summary: Single Sign On (SSO)
      deprecated: false
      description: >-

        :::highlight orange 📌

        SSO allows users to access multiple applications or services using a
        single set of login credentials. With SSO, users authenticate once
        through a trusted identity provider, and gain seamless access to all
        integrated systems, eliminating the need to log in separately for each
        application. This enhances user experience, improves security, and
        simplifies access management.

        :::
      tags:
        - Rewards & Incentives/APIs - Reward/Token APIs
      parameters:
        - name: partnerId
          in: header
          description: ''
          required: true
          example: CRMXWB3ZM
          schema:
            type: string
        - name: Content-Type
          in: header
          description: ''
          required: true
          example: application/json
          schema:
            type: string
        - name: Authorization
          in: header
          description: ''
          required: true
          example: ••••••
          schema:
            type: string
        - name: Cookie
          in: header
          description: ''
          required: true
          example: JSESSIONID=BC1A71C9BC65576B3AB0E78896971B9E
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                cardAccountId:
                  type: string
                  description: Card Account ID
                companyId:
                  type: string
                  description: Company ID
                enkashCardId:
                  type: string
                  description: Enkash CARD HOLDER ID
              required:
                - cardAccountId
                - companyId
                - enkashCardId
              x-apidog-orders:
                - cardAccountId
                - companyId
                - enkashCardId
            example:
              cardAccountId: CAQL8YCV3
              companyId: CEK1PU9AOO
              enkashCardId: EKCDM5AVZY
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties: {}
                x-apidog-orders: []
          headers: {}
          x-apidog-name: Success
      security: []
      x-apidog-folder: Rewards & Incentives/APIs - Reward/Token APIs
      x-apidog-status: developing
      x-run-in-apidog: https://app.apidog.com/web/project/616243/apis/api-9796903-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://ekpayout-uat.enkash.in
    description: Testing Env
security: []

```
