{
  "id": "ent_cNqYX2J3s9bI2Aa",
  "name": "Acme Corporation",
  "country": "US",
  "address": {
    "line1": "123 Business Ave",
    "line2": "Suite 100",
    "city": "San Francisco",
    "state": "CA",
    "postal_code": "94105",
    "country": "US"
  },
  "status": "verified",
  "dba": "Acme",
  "description": "Technology consulting and software development services",
  "email": "contact@acmecorp.com",
  "phone": "+15551234567",
  "website": "https://www.acmecorp.com",
  "structure": "corporation",
  "formation": {
    "country": "US",
    "state": "DE",
    "date": "2020-03-15"
  },
  "tax_id": {
    "number": "123456789",
    "type": "ein",
    "country": "US"
  }
}

An Entity represents the legal person or business entity that uses Plane. In most cases, this is your company or organization.

When you signed up for Plane, we requested information about your business. This information was used to populate the Entity record on your account, which serves as the foundational business identity for all operations within Plane.

We use this Entity information for contracts, tax reporting, payment compliance, and any other situation where we need to precisely identify the legal entity on whose behalf we are acting.

Attributes

id
string

Unique identifier for the entity, e.g. ent_cNqYX2J3s9bI2Aa.

name
string

The legal name of the entity as registered with government authorities.

country
string

Two-letter ISO country code (ISO 3166-1 alpha-2) representing the country where the entity is legally domiciled.

address
object

The primary business address of the entity.

status
string

Current operational status of the entity. Common values include active, inactive, pending, or suspended.

dba
string

“Doing Business As” name - the trade name used by the entity if different from the legal name. Optional.

description
string

A brief description of the entity’s business activities or purpose. Optional.

email
string

Primary contact email address for the entity.

phone
string

Primary contact phone number for the entity.

website
string

The entity’s primary website URL. Optional.

structure
string

The legal structure of the entity. Allowed values are corporation, llc, or partnership.

formation
object

Details about the entity’s legal formation.

tax_id
object

Tax identification information for the entity.

{
  "id": "ent_cNqYX2J3s9bI2Aa",
  "name": "Acme Corporation",
  "country": "US",
  "address": {
    "line1": "123 Business Ave",
    "line2": "Suite 100",
    "city": "San Francisco",
    "state": "CA",
    "postal_code": "94105",
    "country": "US"
  },
  "status": "verified",
  "dba": "Acme",
  "description": "Technology consulting and software development services",
  "email": "contact@acmecorp.com",
  "phone": "+15551234567",
  "website": "https://www.acmecorp.com",
  "structure": "corporation",
  "formation": {
    "country": "US",
    "state": "DE",
    "date": "2020-03-15"
  },
  "tax_id": {
    "number": "123456789",
    "type": "ein",
    "country": "US"
  }
}