Skip to main content
Unternehmen sind Organisationseinträge im Talkturo-CRM — eine Ebene über Kontakten. Jeder Kontakt gehört zu einem Unternehmen, jede Kampagne ist einem Unternehmen zugeordnet. Sie speichern Adresse, Branche, Größe und eigene Felder; die KI-Infoextraktion kann diese Felder nach Gesprächen automatisch pflegen.

Create a company

POST /api/crm/companies Creates a new company in your CRM.

Request body

string
erforderlich
The team ID that owns this company.
string
erforderlich
The company’s name.
string
The company’s website URL.
string
The industry the company operates in (for example, "SaaS", "Healthcare", "Finance").
string
A descriptor of the company’s size (for example, "1-10", "51-200", "1000+").
string
First line of the company’s street address.
string
Second address line (suite, floor, etc.).
string
City.
string
State or province.
string
Postal or ZIP code.
string
Country (for example, "US", "GB", "DE").
string
Company main phone number in E.164 format.
string
Free-text notes about the company.
object
Key-value object for any additional company-level data.

Example request

Antwort

string
Unique identifier for the company. Use this ID when creating contacts or campaigns.
string
The team this company belongs to.
string
Company name.
string
Company website URL.
string
Industry descriptor.
string
Company size descriptor.
string
Main company phone number.
string
First line of the street address.
string
Second line of the address.
string
City.
string
State or province.
string
Postal or ZIP code.
string
Country code.
string
Free-text notes.
object
Key-value pairs of custom company data.
integer
Number of contacts associated with this company.
string
ISO 8601 timestamp of when the company was created.
string
ISO 8601 timestamp of the most recent update.

List companies

GET /api/crm/companies Returns a paginated list of companies. You can filter by team or account, search by name, and filter by industry.

Query parameters

string
The team ID to list companies for. Provide either teamId or accountSlug.
string
Your account slug. Alternative to teamId.
Search by company name.
string
Filter by industry value.
integer
Maximum records to return. Defaults to 50.
integer
Records to skip for pagination. Defaults to 0.

Example request

Antwort

array
Array von Unternehmensobjekten.
integer
Gesamtzahl der Unternehmen, die den Filtern entsprechen.
integer
Der für diese Antwort verwendete limit-Wert.
integer
Der für diese Antwort verwendete offset-Wert.
Beim Anlegen einer Kampagne müssen Sie eine companyId angeben. Legen Sie zuerst den Unternehmensdatensatz an, dann Kontakte darunter, danach die Kampagne.