Untangly API Docs

Businesses

List, retrieve, create, and edit business clients.

Business clients represent companies, corporations, or other legal entities. Each business is also a Client with clientType: "business".

List businesses

GET /businesses

Query parameters

ParameterTypeDescription
searchstringFilter by legal name, operating name, or business number
limitnumberMax results (default 50, max 100)
offsetnumberPagination offset

Example

curl "https://api.untangly.com/businesses?search=acme" \
  -H "Authorization: Bearer mint_<key>"

Response

{
  "businesses": [
    {
      "id": "b1234567-...",
      "clientId": "c9876543-...",
      "legalName": "Acme Corp",
      "operatedAs": "Acme",
      "businessNumber": "123456789",
      "taxId": null,
      "phone": "+1-555-0100",
      "email": "info@acme.com",
      "ownershipType": "private",
      "industryType": "service",
      "incorporationDate": "2010-06-15",
      "createdAt": "2026-01-10T08:00:00.000Z",
      "updatedAt": "2026-01-10T08:00:00.000Z"
    }
  ],
  "total": 1
}

Get business details

GET /businesses/{id}

Add a business

POST /businesses

Request body

{
  "legalName": "New Corp Inc.",
  "operatedAs": "NewCo",
  "businessNumber": "987654321",
  "taxId": "TAX-001",
  "phone": "+1-416-555-0100",
  "email": "contact@newco.com",
  "ownershipType": "private",
  "industryType": "retail",
  "incorporationDate": "2020-01-01"
}
FieldTypeRequiredDescription
legalNamestringRegistered legal name
operatedAsstringTrade / operating name
businessNumberstringCRA Business Number
taxIdstring
phonestring
emailstringMust be a valid email
ownershipType"private" | "public" | "non_profit" | "other"
industryType"retail" | "manufacturing" | "service" | "other"
incorporationDatestringISO date YYYY-MM-DD

Edit a business

PATCH /businesses/{id}

Send only the fields you want to change. All fields are optional.

Example

curl -X PATCH "https://api.untangly.com/businesses/b1234567-..." \
  -H "Authorization: Bearer mint_<key>" \
  -H "Content-Type: application/json" \
  -d '{"phone":"+1-416-555-9999","email":"new@acme.com"}'

On this page