v1

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

Get organization information for an audit

Retrieves organization information for an audit.

This endpoint returns a single record containing the organization's business information visible to auditors during an audit engagement.

Sorting and pagination are not applicable.

Rate limit: 10 requests / minute.

get/audits/{auditId}/organization/information

Path parameters

auditIdstring required

The audit ID

Response

Organization information record

idstring required

Business info document identifier.

displayNamestring required

Display name of the organization.

legalNamestring nullable

Legal name of the organization.

incorporationstring nullable

Incorporation status. Returns "Incorporated in the United States" when the organization is a US company, or null otherwise.

urlstring nullable

Organization URL.

mailingAddressstring nullable

Mailing address of the organization.

telephonestring nullable

Telephone number of the organization.

Example response

{
  "id": "5f2c939a52855e725c8d5824",
  "displayName": "Acme Corp",
  "legalName": "Acme Corporation Inc.",
  "incorporation": "Incorporated in the United States",
  "url": "https://acme.example.com",
  "mailingAddress": "123 Main St, San Francisco, CA 94105",
  "telephone": "+1-555-123-4567",
  "companyLogo": {
    "url": "https://storage.example.com/logos/acme.png"
  }
}