openapi: 3.2.0
info:
title: Cisco ISE API - System Settings Proxy 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://10.56.60.25:443
description: Inferred Url
tags:
- name: proxy
paths:
/api/v1/system-settings/proxy:
get:
tags:
- proxy
summary: Returns ISE proxy connection settings
description: '
The following functionalities are impacted by the proxy settings:
- Partner Mobile Management
- Endpoint Profiler Feed Service Update
- Endpoint Posture Update
- Endpoint Posture Agent Resources Download
- CRL (Certificate Revocation List) Download
- SMS Message Transmission
- Social Login
- Rest Auth Service - Azure AD
- pxGrid Cloud
'
operationId: getProxyConnection
parameters:
- name: X-Request-ID
in: header
description: request Id, will return to the response headers, and appear in logs
required: false
schema:
type: string
exampleSetFlag: true
responses:
'200':
description: Proxy Connection response
content:
application/json:
schema:
$ref: '#/components/schemas/ProxyConnectionSettingsResponseEntity'
exampleSetFlag: false
'400':
description: Bad request
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
exampleSetFlag: false
'401':
description: Unauthorized
'403':
description: Forbidden
'404':
description: Not Found
security:
- BasicAuth: []
put:
tags:
- proxy
summary: Configure ISE proxy connection settings
description: 'The following functionalities are impacted by the proxy settings:
- Partner Mobile Management
- Endpoint Profiler Feed Service Update
- Endpoint Posture Update
- Endpoint Posture Agent Resources Download
- CRL (Certificate Revocation List) Download
- SMS Message Transmission
- Social Login
- Rest Auth Service - Azure AD
- pxGrid Cloud
'
operationId: updateProxyConnection
parameters:
- name: X-Request-ID
in: header
description: request Id, will return to the response headers, and appear in logs
required: false
schema:
type: string
exampleSetFlag: true
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/ProxyConnectionSettings'
exampleSetFlag: false
responses:
'200':
description: Proxy Connection response
content:
application/json:
schema:
$ref: '#/components/schemas/ProxyConnectionSettingsResponseEntity'
exampleSetFlag: false
'201':
description: Created
'400':
description: Bad request
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
exampleSetFlag: false
'401':
description: Unauthorized
'403':
description: Forbidden
'404':
description: Not Found
security:
- BasicAuth: []
components:
schemas:
Error:
title: Error
required:
- code
- message
type: object
properties:
code:
type: string
example: '400'
exampleSetFlag: true
message:
type: string
example: An error message
exampleSetFlag: true
exampleSetFlag: false
ProxyConnectionSettingsResponseEntity:
title: ProxyConnectionSettingsResponseEntity
required:
- response
- version
type: object
properties:
response:
$ref: '#/components/schemas/ProxyConnectionSettings'
exampleSetFlag: true
version:
type: string
example: 1.0.0
exampleSetFlag: true
exampleSetFlag: false
ProxyConnectionSettings:
title: ProxyConnectionSettings
type: object
properties:
bypassHosts:
type: string
description: Bypass hosts for the proxy connection
example: bypassHost1.domain.com,bypassHost2.domain.com
exampleSetFlag: true
fqdn:
type: string
description: proxy IP address or DNS-resolvable host name
example: connection.xx
exampleSetFlag: true
password:
type: string
description: Password for the proxy connection
example: password
exampleSetFlag: true
passwordRequired:
type: boolean
description: Indicates whether password configuration is required for Proxy.
example: true
exampleSetFlag: true
port:
type: integer
description: Port for proxy connection. should be between 1 and 65535
format: int32
example: 1001
exampleSetFlag: true
userName:
type: string
description: User name for the proxy connection
example: username
exampleSetFlag: true
description: ISE Proxy connection settings
exampleSetFlag: false