openapi: 3.2.0 info: title: Cisco ISE API - LSD Settings Configuration 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.106.141.112:4443 description: Inferred Url tags: - name: Configuration paths: /api/v1/lsd/updateLsdSettings: get: tags: - Configuration summary: Retrieve configuration information for LSD settings page operationId: getConfiguration responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Config' exampleSetFlag: false '401': description: Unauthorized '403': description: Forbidden '404': description: Not Found put: tags: - Configuration summary: Update LSD enable/disable settings for endppint ownership and rcm (random changing mac) description: 'API to enable/disable LSD settings ' operationId: updateConfiguration requestBody: content: application/json: schema: $ref: '#/components/schemas/Config' exampleSetFlag: false responses: '200': description: LSD settings updated successfully content: application/json: schema: type: string exampleSetFlag: true '201': description: Created '400': description: Invalid inputs supplied. content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' exampleSetFlag: false '401': description: Unauthorized '403': description: Forbidden '404': description: Not Found components: schemas: ErrorResponse: title: ErrorResponse type: object properties: code: type: integer format: int32 exampleSetFlag: true message: type: string exampleSetFlag: true rootCause: type: string exampleSetFlag: true exampleSetFlag: false Config: title: Config required: - enableEPO - enableRCM type: object properties: enableEPO: type: boolean description: To enable/disable LSD ownership settings example: false exampleSetFlag: true enableLSD: type: boolean description: To enable/disable LSD feature example: false exampleSetFlag: true enableRCM: type: boolean description: To enable/disable random mac(RCM) settings. Please note that this flag will be set to false if enableEPO flag is false example: false exampleSetFlag: true exampleSetFlag: false