Cisco Secure Firewall Access Token API

The Access Token API from Cisco Secure Firewall — 1 operation(s) for access token.

Operations 1

POST /access_token Generate a CUI access token using a refresh 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/cisco-secure-firewall-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

cisco-secure-firewall-access-token-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Service for managing API keys and tokens
  title: Key Management Service v2 Access Token API
  version: 1.0.0
  x-provenance:
    method: harvested
    authored_by: Cisco Security Cloud Control
    harvested_by: API Evangelist
    harvested_on: '2026-08-19'
    first_party: true
    note: Published by Cisco. Retrieved unmodified except for this x-provenance block.
    provider_published: true
  x-evidence:
  - type: source
    url: https://github.com/CiscoDevNet/scc-public-api-docs/blob/main/specs/api-token.yaml
  - type: raw
    url: https://raw.githubusercontent.com/CiscoDevNet/scc-public-api-docs/main/specs/api-token.yaml
servers:
- url: https://api.int.security.cisco.com/v1/api/applications
tags:
- name: Access Token
paths:
  /access_token:
    post:
      description: Create a new access token using a CUI refresh token for API keys. A valid PIAM token must be provided in the authorization header.
      operationId: generateCUIToken
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/RefreshTokenFormRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RefreshTokenResponse'
          description: Access token generated
        '400':
          description: Invalid request
        '401':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ErrorResponse'
                type: array
          description: Unauthorized - Invalid PIAM token
      security:
      - bearerAuth: []
      summary: Generate a CUI access token using a refresh token
      tags:
      - Access Token
components:
  schemas:
    RefreshTokenFormRequest:
      properties:
        apiKeyId:
          description: The ID of the API key associated with the refresh token.
          type: string
        grantType:
          description: The type of grant, which must be 'refresh_token'.
          enum:
          - refresh_token
          type: string
        refreshToken:
          description: The refresh token to be used for generating a new access token.
          type: string
      required:
      - grantType
      - refreshToken
      - apiKeyId
      type: object
    ErrorResponse:
      properties:
        message:
          description: A descriptive error message.
          type: string
        timestamp:
          description: The timestamp of when the error occurred in ISO 8601 format.
          format: date-time
          type: string
        trackingId:
          description: A unique identifier for tracking the error.
          format: uuid
          type: string
      required:
      - trackingId
      - message
      - timestamp
      type: object
    RefreshTokenResponse:
      properties:
        accessToken:
          description: The newly generated access token.
          type: string
        refreshToken:
          description: The newly generated refresh token.
          type: string
      type: object
  securitySchemes:
    bearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http