Skip to main content

AccessRequestApprovalsApi

Use this API to implement and customize access request approval functionality. With this functionality in place, administrators can delegate qualified users to review users' requests for access or managers' requests to revoke team members' access to applications, entitlements, or roles.
This enables more qualified users to review access requests and the others to spend their time on other tasks.

In Identity Security Cloud, users can request access to applications, entitlements, and roles, and managers can request that team members' access be revoked.
For applications and entitlements, administrators can set access profiles to require approval from the access profile owner, the application owner, the source owner, the requesting user's manager, or a governance group for access to be granted or revoked.
For roles, administrators can also set roles to allow access requests and require approval from the role owner, the requesting user's manager, or a governance group for access to be granted or revoked.
If the administrator designates a governance group as the required approver, any governance group member can approve the requests.

When a user submits an access request, Identity Security Cloud sends the first required approver in the queue an email notification, based on the access request configuration's approval and reminder escalation configuration.

In Approvals in Identity Security Cloud, required approvers can view pending access requests under the Requested tab and approve or deny them, or the approvers can reassign the requests to different reviewers for approval.
If the required approver approves the request and is the only reviewer required, Identity Security Cloud grants or revokes access, based on the request.
If multiple reviewers are required, Identity Security Cloud sends the request to the next reviewer in the queue, based on the access request configuration's approval reminder and escalation configuration.
The required approver can then view any completed access requests under the Reviewed tab.

Refer to Access Requests for more information about access request approvals.

All URIs are relative to https://sailpoint.api.identitynow.com

MethodHTTP requestDescription
approve-access-request-v1POST /access-request-approvals/v1/{approvalId}/approveApprove access request approval
forward-access-request-v1POST /access-request-approvals/v1/{approvalId}/forwardForward access request approval
get-access-request-approval-summary-v1GET /access-request-approvals/v1/approval-summaryGet access requests approvals number
list-access-request-approvers-v1GET /access-request-approvals/v1/{accessRequestId}/approversAccess request approvers
list-completed-approvals-v1GET /access-request-approvals/v1/completedCompleted access request approvals list
list-pending-approvals-v1GET /access-request-approvals/v1/pendingPending access request approvals list
reject-access-request-v1POST /access-request-approvals/v1/{approvalId}/rejectReject access request approval

approve-access-request-v1

Approve access request approval Use this endpoint to approve an access request approval. Only the owner of the approval and ORG_ADMIN users are allowed to perform this action.

API Spec

Parameters

NameTypeDescriptionNotes
approvalIdstringApproval ID.[default to undefined]
commentdtoCommentdtoReviewer's comment.[optional]

Return type

object

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

Example

import { AccessRequestApprovalsApi } from 'sailpoint-api-client';
import { Configuration } from 'sailpoint-api-client';
import { Commentdto } from 'sailpoint-api-client/dist/access_request_approvals/api';

const configuration = new Configuration();
const apiInstance = new AccessRequestApprovalsApi(configuration);
const approvalId: string = 2c91808b7294bea301729568c68c002e; // Approval ID.
const commentdto: Commentdto = ; // Reviewer\'s comment. (optional)
const result = await apiInstance.approveAccessRequestV1({ approvalId: approvalId });
console.log(result);

[Back to top]

forward-access-request-v1

Forward access request approval Use this API to forward an access request approval to a new owner. Only the owner of the approval and ORG_ADMIN users are allowed to perform this action. Only the owner of the approval and ORG_ADMIN users are allowed to perform this action.

API Spec

Parameters

NameTypeDescriptionNotes
approvalIdstringApproval ID.[default to undefined]
forwardapprovaldtoForwardapprovaldtoInformation about the forwarded approval.

Return type

object

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

Example

import { AccessRequestApprovalsApi } from 'sailpoint-api-client';
import { Configuration } from 'sailpoint-api-client';
import { Forwardapprovaldto } from 'sailpoint-api-client/dist/access_request_approvals/api';

const configuration = new Configuration();
const apiInstance = new AccessRequestApprovalsApi(configuration);
const approvalId: string = 2c91808b7294bea301729568c68c002e; // Approval ID.
const forwardapprovaldto: Forwardapprovaldto = ; // Information about the forwarded approval.
const result = await apiInstance.forwardAccessRequestV1({ approvalId: approvalId, forwardapprovaldto: forwardapprovaldto });
console.log(result);

[Back to top]

get-access-request-approval-summary-v1

Get access requests approvals number Use this API to return the number of pending, approved and rejected access requests approvals. See the "owner-id" query parameter for authorization information. info.

API Spec

Parameters

NameTypeDescriptionNotes
ownerIdstringThe 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.[optional] [default to undefined]
fromDatestringThis is the date and time the results will be shown from. It must be in a valid ISO-8601 format.[optional] [default to undefined]

Return type

Approvalsummary

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

Example

import { AccessRequestApprovalsApi } from 'sailpoint-api-client';
import { Configuration } from 'sailpoint-api-client';

const configuration = new Configuration();
const apiInstance = new AccessRequestApprovalsApi(configuration);
const ownerId: string = 2c91808568c529c60168cca6f90c1313; // 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. (optional)
const fromDate: string = from-date=2020-03-19T19:59:11Z; // This is the date and time the results will be shown from. It must be in a valid ISO-8601 format. (optional)
const result = await apiInstance.getAccessRequestApprovalSummaryV1({ });
console.log(result);

[Back to top]

list-access-request-approvers-v1

Access request approvers This API endpoint returns the list of approvers for the given access request id.

API Spec

Parameters

NameTypeDescriptionNotes
accessRequestIdstringAccess Request ID.[default to undefined]
limitnumberMax number of results to return.[optional] [default to 250]
offsetnumberOffset into the full result set. Usually specified with limit to paginate through the results. Defaults to 0 if not specified.[optional] [default to undefined]
countbooleanIf this is true, the X-Total-Count response header populates with the number of results that would be returned if limit and offset were ignored.[optional] [default to false]

Return type

Array<Accessrequestapproverslistresponse>

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

Example

import { AccessRequestApprovalsApi } from 'sailpoint-api-client';
import { Configuration } from 'sailpoint-api-client';

const configuration = new Configuration();
const apiInstance = new AccessRequestApprovalsApi(configuration);
const accessRequestId: string = 2c91808568c529c60168cca6f90c1313; // Access Request ID.
const limit: number = 100; // Max number of results to return. (optional)
const offset: number = 10; // Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified. (optional)
const count: boolean = false; // If this is true, the *X-Total-Count* response header populates with the number of results that would be returned if limit and offset were ignored. (optional)
const result = await apiInstance.listAccessRequestApproversV1({ accessRequestId: accessRequestId });
console.log(result);

[Back to top]

list-completed-approvals-v1

Completed access request approvals list This endpoint returns list of completed approvals. See owner-id query parameter below for authorization info.

API Spec

Parameters

NameTypeDescriptionNotes
ownerIdstringIf present, the value returns only completed approvals for the specified identity. * ORG_ADMIN users can call this with any identity ID value. * ORG_ADMIN users 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.[optional] [default to undefined]
limitnumberMax number of results to return. See V3 API Standard Collection Parameters for more information.[optional] [default to 250]
offsetnumberOffset into the full result set. Usually specified with limit to paginate through the results. See V3 API Standard Collection Parameters for more information.[optional] [default to 0]
countbooleanIf true it will populate the X-Total-Count response header with the number of results that would be returned if limit and offset were ignored. Since requesting a total count can have a performance impact, it is recommended not to send count=true if that value will not be used. See V3 API Standard Collection Parameters for more information.[optional] [default to false]
filtersstringFilter results using the standard syntax described in V3 API Standard Collection Parameters Filtering is supported for the following fields and operators: id: eq, in, ge, gt, le, lt, ne, isnull, sw requestedFor.id: eq, in, ge, gt, le, lt, ne, isnull, sw modified: gt, lt, ge, le, eq, in, ne, sw[optional] [default to undefined]
sortersstringSort results using the standard syntax described in V3 API Standard Collection Parameters Sorting is supported for the following fields: created, modified[optional] [default to undefined]

Return type

Array<Completedapproval>

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

Example

import { AccessRequestApprovalsApi } from 'sailpoint-api-client';
import { Configuration } from 'sailpoint-api-client';

const configuration = new Configuration();
const apiInstance = new AccessRequestApprovalsApi(configuration);
const ownerId: string = 2c91808568c529c60168cca6f90c1313; // If present, the value returns only completed approvals for the specified identity. * ORG_ADMIN users can call this with any identity ID value. * ORG_ADMIN users 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. (optional)
const limit: number = 250; // Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional)
const offset: number = 0; // Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional)
const count: boolean = true; // If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional)
const filters: string = id eq "2c91808568c529c60168cca6f90c1313"; // 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: **id**: *eq, in, ge, gt, le, lt, ne, isnull, sw* **requestedFor.id**: *eq, in, ge, gt, le, lt, ne, isnull, sw* **modified**: *gt, lt, ge, le, eq, in, ne, sw* (optional)
const sorters: string = modified; // Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified** (optional)
const result = await apiInstance.listCompletedApprovalsV1({ });
console.log(result);

[Back to top]

list-pending-approvals-v1

Pending access request approvals list This endpoint returns a list of pending approvals. See "owner-id" query parameter below for authorization info.

API Spec

Parameters

NameTypeDescriptionNotes
ownerIdstringIf present, the value returns only pending approvals for the specified identity. * ORG_ADMIN users can call this with any identity ID value. * ORG_ADMIN users 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.[optional] [default to undefined]
limitnumberMax number of results to return. See V3 API Standard Collection Parameters for more information.[optional] [default to 250]
offsetnumberOffset into the full result set. Usually specified with limit to paginate through the results. See V3 API Standard Collection Parameters for more information.[optional] [default to 0]
countbooleanIf true it will populate the X-Total-Count response header with the number of results that would be returned if limit and offset were ignored. Since requesting a total count can have a performance impact, it is recommended not to send count=true if that value will not be used. See V3 API Standard Collection Parameters for more information.[optional] [default to false]
filtersstringFilter results using the standard syntax described in V3 API Standard Collection Parameters Filtering is supported for the following fields and operators: id: eq, in requestedFor.id: eq, in modified: gt, lt, ge, le, eq, in accessRequestId: eq, in created: gt, lt, ge, le, eq, in[optional] [default to undefined]
sortersstringSort results using the standard syntax described in V3 API Standard Collection Parameters Sorting is supported for the following fields: created, modified[optional] [default to undefined]

Return type

Array<Pendingapproval>

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

Example

import { AccessRequestApprovalsApi } from 'sailpoint-api-client';
import { Configuration } from 'sailpoint-api-client';

const configuration = new Configuration();
const apiInstance = new AccessRequestApprovalsApi(configuration);
const ownerId: string = 2c91808568c529c60168cca6f90c1313; // If present, the value returns only pending approvals for the specified identity. * ORG_ADMIN users can call this with any identity ID value. * ORG_ADMIN users 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. (optional)
const limit: number = 250; // Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional)
const offset: number = 0; // Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional)
const count: boolean = true; // If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional)
const filters: string = id eq "2c91808568c529c60168cca6f90c1313"; // 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: **id**: *eq, in* **requestedFor.id**: *eq, in* **modified**: *gt, lt, ge, le, eq, in* **accessRequestId**: *eq, in* **created**: *gt, lt, ge, le, eq, in* (optional)
const sorters: string = modified; // Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified** (optional)
const result = await apiInstance.listPendingApprovalsV1({ });
console.log(result);

[Back to top]

reject-access-request-v1

Reject access request approval Use this API to reject an access request approval. Only the owner of the approval and admin users are allowed to perform this action.

API Spec

Parameters

NameTypeDescriptionNotes
approvalIdstringApproval ID.[default to undefined]
commentdtoCommentdtoReviewer&#39;s comment.

Return type

object

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

Example

import { AccessRequestApprovalsApi } from 'sailpoint-api-client';
import { Configuration } from 'sailpoint-api-client';
import { Commentdto } from 'sailpoint-api-client/dist/access_request_approvals/api';

const configuration = new Configuration();
const apiInstance = new AccessRequestApprovalsApi(configuration);
const approvalId: string = 2c91808b7294bea301729568c68c002e; // Approval ID.
const commentdto: Commentdto = ; // Reviewer\&#39;s comment.
const result = await apiInstance.rejectAccessRequestV1({ approvalId: approvalId, commentdto: commentdto });
console.log(result);

[Back to top]