mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-08 20:37:48 +00:00
50 lines
1.7 KiB
YAML
50 lines
1.7 KiB
YAML
get:
|
|
operationId: getAccessRequestApprovalSummary
|
|
summary: Get the number of pending, approved and rejected access requests approvals
|
|
tags:
|
|
- Access Request Approvals
|
|
description: >-
|
|
This endpoint returns the number of pending, approved and rejected access requests approvals.
|
|
See "owner-id" query parameter below for authorization info.
|
|
parameters:
|
|
- in: query
|
|
name: owner-id
|
|
schema:
|
|
type: string
|
|
description: >-
|
|
The id of the owner or approver identity of the approvals. If present, the value returns approval summary for the specified identity.
|
|
* ORG_ADMIN users can call this with any identity ID value.
|
|
* ORG_ADMIN user can also fetch all the approvals in the org, when owner-id is not used.
|
|
* Non ORG_ADMIN users can only specify *me* or pass their own identity ID value.
|
|
|
|
- in: query
|
|
name: from-date
|
|
schema:
|
|
type: string
|
|
description: >-
|
|
From date is the date and time from which the results will be shown. It should be in a valid ISO-8601 format
|
|
|
|
|
|
example: from-date=2020-03-19T19:59:11Z
|
|
responses:
|
|
'200':
|
|
description: Number of pending, approved, rejected access request approvals.
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '../schemas/ApprovalSummary.yaml'
|
|
'400':
|
|
description: Client Error - Returned if the query parameter is invalid.
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '../../v3/schemas/ErrorResponseDto.yaml'
|
|
'401':
|
|
$ref: '../../v3/responses/401.yaml'
|
|
'403':
|
|
$ref: '../../v3/responses/403.yaml'
|
|
'429':
|
|
$ref: '../../v3/responses/429.yaml'
|
|
'500':
|
|
$ref: '../../v3/responses/500.yaml'
|