Create a company
POST/crm/{connection_id}/company
Parameters
fieldsstring array
Fields to return
rawstring
Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar
connection_idstring required
ID of the connection
Payload
A company represents an organization that optionally is associated with a deal and/or contacts
idstring
Unique identifier for this company object
created_atdate
The date that this company object was created (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
updated_atdate
The last date that this company object was updated (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
namestring
The name of the company
deal_idsstring array
An array of deal IDs associated with this contact
contact_idsstring array
An array of contact IDs associated with this company
websitesstring array
is_activeboolean
tagsstring array
descriptionstring
industrystring
link_urlsstring array
Additional URLs associated with the contact e.g., LinkedIn, website, etc
employeesnumber
timezonestring
user_idstring
(reference to HrisEmployee)
domainsstring array
Returns
A company represents an organization that optionally is associated with a deal and/or contacts
idstring
Unique identifier for this company object
created_atdate
The date that this company object was created (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
updated_atdate
The last date that this company object was updated (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
namestring
The name of the company
deal_idsstring array
An array of deal IDs associated with this contact
contact_idsstring array
An array of contact IDs associated with this company
websitesstring array
is_activeboolean
tagsstring array
descriptionstring
industrystring
link_urlsstring array
Additional URLs associated with the contact e.g., LinkedIn, website, etc
employeesnumber
timezonestring
user_idstring
(reference to HrisEmployee)
domainsstring array
const options = {
method: 'POST',
url: 'https://api.unified.to/crm/5de520f96e439b002043d8dc/company',
headers: {
authorization: 'bearer .....'
},
data: undefined,
params: {
fields: '',
raw: '',
}
};
const results = await axios.request(options); Are we missing anything? Let us know