Files
developer.sailpoint.com/static/api-specs/idn/beta/paths/certifications-decision-summary.yaml
2022-09-28 19:55:44 +00:00

53 lines
1.6 KiB
YAML

get:
operationId: getDecisionSummary
tags:
- Certification Summaries
summary: Summary of Certification Decisions
description: >-
This API returns a summary of the decisions made on an certification. 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
- $ref: '../../v3/parameters/limit.yaml'
- $ref: '../../v3/parameters/offset.yaml'
- $ref: '../../v3/parameters/count.yaml'
- in: query
name: filters
schema:
type: string
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:
**targetSummary.id**: *eq, in*
responses:
'200':
description: Summary of the decisions made
content:
application/json:
schema:
type: array
items:
$ref: '../../beta/schemas/DecisionSummary.yaml'
'400':
$ref: '../../v3/responses/400.yaml'
'401':
$ref: '../../v3/responses/401.yaml'
'403':
$ref: '../../v3/responses/403.yaml'
'404':
$ref: '../../v3/responses/404.yaml'
'429':
$ref: '../../v3/responses/429.yaml'
'500':
$ref: '../../v3/responses/500.yaml'