Enterprises

Update an enterprise

Update enterprise information. All fields are optional — only the provided fields will be updated.

put/enterprises/{enterprise_id}

Path parameters

enterprise_idstring uuid required
Example:6a09cdc3-8948-47f0-aa62-74ac943d6c58

Unique identifier of the enterprise (UUID)

Request body

legal_namestring

Legal name of the enterprise

doing_business_asstring

DBA name

customer_referencestring

Customer reference identifier

websitestring

Company website URL

feinstring

Federal Employer Identification Number. Format: XX-XXXXXXX or XXXXXXXXX

industrystring

Industry classification

number_of_employees'1-10' | '11-50' | '51-200' | '201-500' | '501-2000' | '2001-10000' | '10001+'

Employee count range

organization_legal_type'corporation' | 'llc' | 'partnership' | 'nonprofit' | 'other'

Legal structure type

primary_business_domain_sic_codestring

SIC Code

corporate_registration_numberstring

Corporate registration number

professional_license_numberstring

Professional license number

dun_bradstreet_numberstring

D-U-N-S Number

Example request

{
  "organization_contact": {
    "first_name": "Jane",
    "last_name": "Smith",
    "email": "jane.smith@acme.com",
    "job_title": "VP of Engineering",
    "phone": "+16035551234"
  },
  "billing_contact": {
    "first_name": "John",
    "last_name": "Doe",
    "email": "billing@acme.com",
    "phone_number": "15551234568"
  },
  "organization_physical_address": {
    "country": "United States",
    "administrative_area": "Illinois",
    "city": "Chicago",
    "postal_code": "60601",
    "street_address": "123 Main St",
    "extended_address": "Suite 400"
  },
  "billing_address": {
    "country": "United States",
    "administrative_area": "Illinois",
    "city": "Chicago",
    "postal_code": "60601",
    "street_address": "123 Main St",
    "extended_address": "Suite 400"
  }
}

Response

Enterprise updated successfully

Example response

{
  "data": {
    "id": "6a09cdc3-8948-47f0-aa62-74ac943d6c58",
    "legal_name": "Acme Corp Inc.",
    "doing_business_as": "Acme",
    "country_code": "US",
    "organization_contact": {
      "first_name": "Jane",
      "last_name": "Smith",
      "email": "jane.smith@acme.com",
      "job_title": "VP of Engineering",
      "phone": "+16035551234"
    },
    "billing_contact": {
      "first_name": "John",
      "last_name": "Doe",
      "email": "billing@acme.com",
      "phone_number": "15551234568"
    },
    "organization_physical_address": {
      "country": "United States",
      "administrative_area": "Illinois",
      "city": "Chicago",
      "postal_code": "60601",
      "street_address": "123 Main St",
      "extended_address": "Suite 400"
    },
    "billing_address": {
      "country": "United States",
      "administrative_area": "Illinois",
      "city": "Chicago",
      "postal_code": "60601",
      "street_address": "123 Main St",
      "extended_address": "Suite 400"
    }
  }
}

Changes