v1

latestOpenAPI 3.0.1Vanta Terms of Service2026-07-26327517821.8 KB
Audits

List account access services for an audit

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.

get/audits/{auditId}/personnel/account-access/services

Path parameters

auditIdstring required

The audit ID

Query parameters

pageSizeinteger

Controls the maximum number of items returned in one response from the API.

Maximum number of results per page (1-100, default 10)

pageCursorstring

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.

Pagination cursor from previous response

Response

Paginated list of connected account access services

Example response

{
  "results": {
    "data": [
      {
        "id": "credential_abc123",
        "credentialDisplayName": "Okta - Production",
        "service": "okta",
        "subAccountId": "sub_account_456"
      }
    ]
  }
}