Files
api-specs/idn/v3/paths/identity-certifications-decision-summary.yaml
GitHub Action Bot f42a8499b1 Automated commit 'Merge pull request #1203 from sailpoint/devrel-847
Fixed broken links.' by github action: 4473199460
2023-03-20 21:45:44 +00:00

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'