openapi: 3.2.0 info: title: Cisco ISE API - MFA Enable MFA 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: enable-MFA paths: /api/v1/duo-mfa/enable: put: tags: - enable-MFA summary: Enable MFA feature description: Enable or Disable MFA feature operationId: enableMFA 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 requestBody: content: application/json: schema: $ref: '#/components/schemas/MfaFeatureEnable' exampleSetFlag: false responses: '200': description: MFA feature enabled status content: application/json: schema: type: string exampleSetFlag: true '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 '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/Error' exampleSetFlag: false security: - BasicAuth: [] components: schemas: MfaFeatureEnableMfa: title: MfaFeatureEnableMfa required: - status type: object properties: status: type: boolean description: Enable or Disable MFA example: true exampleSetFlag: true description: Duo-MFA feature config exampleSetFlag: false MfaFeatureEnable: title: MfaFeatureEnable required: - mfa type: object properties: mfa: $ref: '#/components/schemas/MfaFeatureEnableMfa' exampleSetFlag: true description: Enable/Disable MFA feature exampleSetFlag: false Error: title: Error required: - code - message type: object properties: code: type: string description: Error code example: '400' exampleSetFlag: true message: type: string description: Error message example: Bad Request exampleSetFlag: true exampleSetFlag: false