Quinyx Access Token API

The Access Token API from Quinyx — 1 operation(s) for access token.

Operations 1

POST /oauth/v3/token Obtain access token #

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/quinyx-access-token-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

quinyx-access-token-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Quinyx Access Token API
  version: v3
  x-service: dummy
  description: null
servers:
- url: https://api.{region}.quinyx.com
  description: Production
  variables:
    region:
      default: eu
      enum:
      - eu
      - na
- url: https://api.{region}.rc.quinyx.com
  description: RC
  variables:
    region:
      default: eu
      enum:
      - eu
      - na
tags:
- name: Access Token
paths:
  /oauth/v3/token:
    post:
      summary: Obtain access token
      description: Operation returns the OAuth2 token that can be used in API calls
      operationId: getToken
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/rest-api-uaa_OAuth2TokenRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rest-api-uaa_OAuth2TokenResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rest-api-uaa_OAuth2ErrorResponse'
              example:
                error: unsupported_grant_type
                error_description: 'Unsupported grant type: invalid_type'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rest-api-uaa_OAuth2ErrorResponse'
              example:
                error: invalid_client
                error_description: 'Client not found: my-client-id'
        '500':
          description: Server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rest-api-uaa_OAuth2ErrorResponse'
              example:
                error: server_error
                error_description: Token generation failed
      security: []
      x-audience: public
      x-resource-group: OAuth
      x-resource: Access Token
      tags:
      - Access Token
components:
  schemas:
    rest-api-uaa_OAuth2TokenResponse:
      type: object
      description: OAuth2 token response
      properties:
        access_token:
          type: string
          description: The access token
          example: eyJhbGciOiJSUzI1NiJ9...
          minLength: 1
        token_type:
          type: string
          description: Token type
          example: Bearer
          minLength: 1
        expires_in:
          type: integer
          format: int64
          description: Token validity in seconds
          example: 3600
        scope:
          type: string
          description: Granted scope
          example: organization:groups:read organization:groups:create
          minLength: 1
      required:
      - access_token
      - expires_in
      - scope
      - token_type
    rest-api-uaa_OAuth2ErrorResponse:
      type: object
      description: OAuth2 error response per RFC 6749
      properties:
        error:
          type: string
          description: An error code defined in RFC 6749 or other extensions
          example: invalid_client
        error_description:
          type: string
          description: A short description of what caused this error. Sometimes this contains dynamically-generated information about your specific error.
          example: 'Client not found: my-client-id'
    rest-api-uaa_OAuth2TokenRequest:
      type: object
      description: OAuth2 client credentials token request
      properties:
        grant_type:
          type: string
          description: OAuth2 grant type
          example: client_credentials
          minLength: 1
        client_id:
          type: string
          description: Client identifier
          example: my-client-id
          minLength: 1
        client_secret:
          type: string
          description: Client secret
          example: my-client-secret
          minLength: 1
        scope:
          type: string
          description: Space-delimited subset of the originally granted scopes. Allows the client to request a narrower set of permissions for the issued access token. If omitted, all originally authorized scopes apply.
          example: organization:groups:read organization:groups:create
      required:
      - client_id
      - client_secret
      - grant_type
  securitySchemes:
    OAuth2ClientCredentials:
      type: oauth2
      description: OAuth2 Client Credentials flow. See https://developer.quinyx.com/api/authentication
      flows:
        clientCredentials:
          tokenUrl: /oauth/v3/token
          scopes:
            hr:employees:create: ''
            hr:employees:delete: ''
            hr:employees:read: ''
            hr:employees:update: ''
            organization:groups:create: ''
            organization:groups:delete: ''
            organization:groups:read: ''
            organization:groups:update: ''
            hr:role-assignments:create: ''
            hr:role-assignments:delete: ''
            hr:role-assignments:read: ''
            hr:role-assignments:update: ''
            organization:roles:read: ''
            schedule:shifts:read: ''
x-tagGroups:
- name: OAuth
  tags:
  - Access Token
- name: Organization
  tags:
  - Group
  - Role
- name: HR
  tags:
  - Employee
  - Role Assignment
- name: Schedule
  tags:
  - Shift