openapi: 3.2.0
info:
title: Cisco ISE API - Policy Network Access - Service Names API
version: 1.0.0
x-provenance:
method: harvested
authored_by: Cisco
harvested_by: API Evangelist
harvested_on: '2026-08-19'
first_party: true
provider_published: true
source_host: pubhub.devnetcloud.com
note: 103 ISE API descriptions (1,490 operations; 32 OpenAPI 3.0.x + 71 Swagger 2.0) enumerated from Cisco's own DevNet project manifest and fetched anonymously. Byte-identity reconfirmed 2026-08-19 by SHA-256 against the live source.
x-evidence:
- type: source
url: https://pubhub.devnetcloud.com/media/identity-services-engine-api-v1/docs/
- type: source
url: https://developer.cisco.com/docs/identity-services-engine/
servers:
- url: https://172.23.9.91:443
description: Inferred Url
tags:
- name: Network Access - Service Names
paths:
/api/v1/policy/network-access/service-names:
get:
tags:
- Network Access - Service Names
summary: Network Access - Returns list of allowed protocols and server sequences for Policy Set.
description:
Returns list of Allowed Protocols and Server Sequences for Network Access Policy Set results.
'isLocalAuthorization' property is available only for Network Access Policy Set results of type Server Sequence.
(Other CRUD APIs available throught ERS)
operationId: getNetworkAccessServiceNames
parameters:
- name: X-Request-ID
in: header
description: request Id, will return in the response headers, and appear in logs
required: false
schema:
type: string
exampleSetFlag: true
responses:
'200':
description: list of allowed protocols and server sequences
content:
application/json:
schema:
type: array
exampleSetFlag: true
items:
$ref: '#/components/schemas/ServiceName'
exampleSetFlag: false
'400':
description: Bad request
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
exampleSetFlag: false
'401':
description: Unauthorized
'403':
description: Forbidden
'404':
description: The specified resource was not found
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
exampleSetFlag: false
security:
- BasicAuth: []
components:
schemas:
ServiceName:
title: ServiceName
required:
- id
- name
- serviceType
type: object
properties:
id:
type: string
example: b52df124-cc8c-45e0-b613-79c230227ddb
exampleSetFlag: true
isLocalAuthorization:
type: boolean
example: false
exampleSetFlag: true
name:
type: string
example: MyServerSequence
exampleSetFlag: true
serviceType:
type: string
description: Allowed Protocols OR Server Sequence
example: serverSequence
exampleSetFlag: true
enum:
- allowedProtocols
- serverSequence
exampleSetFlag: false
Error:
title: Error
type: object
properties:
code:
type: string
example: '400'
exampleSetFlag: true
message:
type: string
example: Bad Request
exampleSetFlag: true
exampleSetFlag: false
securitySchemes:
BasicAuth:
type: http
description: Basic authorization
scheme: basic