Create record
Create a new record.
Documentation Index
Fetch the complete documentation index at: https://docs.unifygtm.com/llms.txt
Use this file to discover all available pages before exploring further.
Overview
The create method creates a new record in the specified object. This method will fail if any record already exists with conflicting unique values, which may or may not be the desired behavior depending on your use case. If you are not sure whether a record already exists with the same unique values, consider using the upsert method instead.Examples
Create a company
Create a company
Create a person
Create a person
company reference on
this person will be null. If you want to create a company in that case
instead, you can use a nested upsert:Create a custom record
Create a custom record
product_user:Usage
Authorizations
Path Parameters
Query Parameters
Validation mode to use when validating request data.
strict validation will fail requests if any attribute fails validation,
including unrecognized attributes.
ignore_invalid validation will strip out unknown attributes and replace
known, non-required attributes with undefined if they fail validation.
The request will still fail if the request body does not contain the proper
structure or if any required attributes fail validation.
strict, ignore_invalid Body
Request body for creating a record.
The attribute values for the new record.
All required attributes on the object must be included.