openapi: 3.2.0 info: title: Task Service Tasks API version: 1.0.0 description: This API is used to monitor the status of various tasks carried out in Cisco ISE. 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/ tags: - name: tasks paths: /api/v1/task: get: tags: - tasks summary: get all task status operationId: getAllTaskStatus responses: '200': description: List of task within 24 hours content: application/json: schema: type: array items: $ref: '#/components/schemas/TaskStatus' '401': description: Unauthorized '403': description: Forbidden '404': description: Not Found /api/v1/task/{taskId}: get: tags: - tasks summary: Monitor task status operationId: getTaskStatus parameters: - name: taskId in: path description: The id of the task executed before required: true style: simple schema: type: string responses: '200': description: task Status content: application/json: schema: $ref: '#/components/schemas/TaskStatus' '401': description: Unauthorized '403': description: Forbidden '404': description: Not Found components: schemas: TaskStatus: title: TaskStatus type: object properties: detailStatus: type: array items: type: object executionStatus: type: string failCount: type: integer format: int32 id: type: string moduleType: type: string resourcesCount: type: integer format: int32 startTime: type: string successCount: type: integer format: int32