mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-09 20:37:50 +00:00
51 lines
1.5 KiB
YAML
51 lines
1.5 KiB
YAML
get:
|
|
operationId: getIdentityDecisionSummary
|
|
tags:
|
|
- Certification Summaries
|
|
summary: Summary of Certification Decisions
|
|
description: >-
|
|
This API returns a summary of the decisions made on an identity campaign certification. The decisions are summarized
|
|
by type. A token with ORG_ADMIN or CERT_ADMIN authority is required to call this API. Reviewers for this
|
|
certification can also call this API.
|
|
parameters:
|
|
- in: path
|
|
name: id
|
|
schema:
|
|
type: string
|
|
required: true
|
|
description: The certification ID
|
|
example: ef38f94347e94562b5bb8424a56397d8
|
|
- in: query
|
|
name: filters
|
|
required: false
|
|
schema:
|
|
type: string
|
|
example: identitySummary.id eq "ef38f94347e94562b5bb8424a56397d8"
|
|
description: >-
|
|
Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)
|
|
|
|
|
|
Filtering is supported for the following fields and operators:
|
|
|
|
|
|
**identitySummary.id**: *eq, in*
|
|
responses:
|
|
'200':
|
|
description: Summary of the decisions made
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '../schemas/IdentityCertDecisionSummary.yaml'
|
|
'400':
|
|
$ref: '../responses/400.yaml'
|
|
'401':
|
|
$ref: '../responses/401.yaml'
|
|
'403':
|
|
$ref: '../responses/403.yaml'
|
|
'404':
|
|
$ref: '../responses/404.yaml'
|
|
'429':
|
|
$ref: '../responses/429.yaml'
|
|
'500':
|
|
$ref: '../responses/500.yaml'
|