openapi: 3.2.0 info: title: Cisco ISE API - Duo IdentitySync Active Directories 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: ActiveDirectories paths: /api/v1/duo-identitysync/activedirectories: get: tags: - ActiveDirectories summary: Get the list of all configured Active Directories description: Duo-IdentitySync - Get the list of all configured Active Directories operationId: getActiveDirectories 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 all configured Active Directories content: application/json: schema: type: array exampleSetFlag: true items: $ref: '#/components/schemas/ActiveDirectory' exampleSetFlag: false '400': description: Bad request content: application/json: schema: $ref: '#/components/schemas/Error' exampleSetFlag: false '401': description: Unauthorized '403': description: The specified resource was not found / MFA feature is disabled content: application/json: schema: $ref: '#/components/schemas/Error' exampleSetFlag: false '404': description: The specified resource was not found content: application/json: schema: $ref: '#/components/schemas/Error' exampleSetFlag: false '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/Error' exampleSetFlag: false security: - BasicAuth: [] components: schemas: ActiveDirectory: title: ActiveDirectory type: object properties: directoryID: type: string description: Active Directory ID example: 406dwor2-odpw-45nh-387w-spe129d5y345 exampleSetFlag: true domain: type: string description: Active Directory domain name example: test.com exampleSetFlag: true name: type: string description: Name of the Active Directory example: ActiveDirectory1 exampleSetFlag: true description: Active Directory information format exampleSetFlag: false Error: title: Error required: - code - message type: object properties: code: type: string example: '400' exampleSetFlag: true message: type: string example: Bad Request exampleSetFlag: true exampleSetFlag: false