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.Documentation Index
Fetch the complete documentation index at: https://docs.talkturo.ai/llms.txt
Use this file to discover all available pages before exploring further.
Create a company
POST /api/crm/companies
Creates a new company in your CRM.
Request body
The team ID that owns this company.
The company’s name.
The company’s website URL.
The industry the company operates in (for example,
"SaaS", "Healthcare", "Finance").A descriptor of the company’s size (for example,
"1-10", "51-200", "1000+").First line of the company’s street address.
Second address line (suite, floor, etc.).
City.
State or province.
Postal or ZIP code.
Country (for example,
"US", "GB", "DE").Company main phone number in E.164 format.
Free-text notes about the company.
Key-value object for any additional company-level data.
Example request
Antwort
Unique identifier for the company. Use this ID when creating contacts or campaigns.
The team this company belongs to.
Company name.
Company website URL.
Industry descriptor.
Company size descriptor.
Main company phone number.
First line of the street address.
Second line of the address.
City.
State or province.
Postal or ZIP code.
Country code.
Free-text notes.
Key-value pairs of custom company data.
Number of contacts associated with this company.
ISO 8601 timestamp of when the company was created.
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
The team ID to list companies for. Provide either
teamId or accountSlug.Your account slug. Alternative to
teamId.Search by company name.
Filter by industry value.
Maximum records to return. Defaults to
50.Records to skip for pagination. Defaults to
0.Example request
Antwort
Array von Unternehmensobjekten.
Gesamtzahl der Unternehmen, die den Filtern entsprechen.
Der für diese Antwort verwendete
limit-Wert.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.