Skip to main content
GET
/
audits
/
{auditId}
/
organization
/
information
TypeScript
import { Vanta } from "vanta-auditor-api-sdk";

const vanta = new Vanta({
  bearerAuth: process.env["VANTA_BEARER_AUTH"] ?? "",
});

async function run() {
  const result = await vanta.audits.getOrganizationInformation({
    auditId: "<id>",
  });

  console.log(result);
}

run();
{
  "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"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

auditId
string
required

The audit ID

Response

200 - application/json

Organization information record

Organization information record returned by the auditor organization API.

id and displayName are always present (primary fields). Other fields are optional to support controlled audits where only approved columns are returned.

id
string
required

Business info document identifier.

Example:

"5f2c939a52855e725c8d5824"

displayName
string
required

Display name of the organization.

Example:

"Acme Corp"

Legal name of the organization.

Example:

"Acme Corporation Inc."

incorporation
string | null

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

Example:

"Incorporated in the United States"

url
string | null

Organization URL.

Example:

"https://acme.example.com"

mailingAddress
string | null

Mailing address of the organization.

Example:

"123 Main St, San Francisco, CA 94105"

telephone
string | null

Telephone number of the organization.

Example:

"+1-555-123-4567"

Company logo reference (download URL), or null if no logo is uploaded.