Skip to main content

Get the number of pending, approved and rejected access requests approvals

GET 

/access-request-approvals/approval-summary

This endpoint returns the number of pending, approved and rejected access requests approvals. See "owner-id" query parameter below for authorization info.

Request

Query Parameters

    owner-id string

    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.
    from-date string

    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

Number of pending, approved, rejected access request approvals.

Schema
    pending integer

    The number of pending access requests approvals.

    approved integer

    The number of approved access requests approvals.

    rejected integer

    The number of rejected access requests approvals.

Loading...