Enterprises

List enterprises

Retrieve a paginated list of enterprises associated with your account.

get/enterprises

Query parameters

page[number]integer

Page number (1-indexed)

page[size]integer

Number of items per page

legal_namestring
Example:Acme

Filter by legal name (partial match)

Response

List of enterprises

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