---
title: "List account access services for an audit"
method: GET
path: "/audits/{auditId}/personnel/account-access/services"
tags: ["Audits"]
---

# List account access services for an audit

`GET /audits/{auditId}/personnel/account-access/services`

Retrieves connected account access services for an audit.

Returns the list of identity providers and access integrations (such as
Okta, Azure AD, Google Workspace, AWS IAM) that are connected to the
organization and provide account access data for personnel.

These integrations are used to verify user access and identity management
during an audit engagement.

Uses cursor-based pagination. To paginate:
1. Make initial request with desired `pageSize`
2. Check `results.pageInfo.hasNextPage`
3. Use `results.pageInfo.endCursor` as `pageCursor` for next request

Results are returned in connection order. Sort order is not guaranteed
and cannot be customized via query parameters.

Rate limit: 10 requests / minute.

## Path parameters

- `auditId` string, required

## Query parameters

- `pageSize` integer — Controls the maximum number of items returned in one response from the API.
- `pageCursor` string — A marker or pointer, telling the API where to start fetching items for the subsequent page in a paginated dataset. Note that the requested page will not include the item that corresponds to this cursor but will start from the one immediately after this cursor.

## Response `200`

Paginated list of connected account access services

- PaginatedResponseAccountAccessService
  - `results` object, required
    - `data` AccountAccessService[], required
      - `id` string, required — Unique identifier for the service.
      - `credentialDisplayName` string, required — Display name of the service shown to users.
      - `service` string, required — The service name or integration ID.
      - `subAccountId` string, nullable, required — Sub-account identifier for multi-account integrations, or null if not applicable.
    - `pageInfo` PageInfo, required — Provides information about the pagination of a dataset.
      - `endCursor` string, nullable, required — The cursor that points to the end of the current page, or null if there is no such cursor.
      - `hasNextPage` boolean, required — Indicates if there is another page after the current page.
      - `hasPreviousPage` boolean, required — Indicates if there is a page before the current page.
      - `startCursor` string, nullable, required — The cursor that points to the start of the current page, or null if there is no such cursor.

---

[API](https://skmtc.net/vanta/apis/build-integrations.md) · [All operations](https://skmtc.net/vanta/apis/build-integrations/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/vanta/build-integrations/versions/6c1f7590538b/schema)
