Actions57
- Objects Actions
- Attributes Actions
- List Attributes
- Get Attribute
- Update Attribute
- GET target/identifier/attributes/attribute/options
- POST target/identifier/attributes/attribute/options
- PATCH target/identifier/attributes/attribute/options/option
- POST target/identifier/attributes/attribute/statuses
- Create Attribute
- GET target/identifier/attributes/attribute/statuses
- PATCH target/identifier/attributes/attribute/statuses/status
- Entries Actions
- Records Actions
- Lists Actions
- Meta Actions
- Workspace Members Actions
- Notes Actions
- Tasks Actions
- Webhooks Actions
- Threads Actions
- Comments Actions
Overview
This node interacts with the Attio API to create a new record within a specified object. It is useful for automating data entry into Attio, such as adding new people, companies, or other entities defined in Attio's objects. For example, it can be used to add a new contact with various attributes or to log new entries in a custom object.
Use Case Examples
- Creating a new person record with attributes like name, email, and tags.
- Adding a new company record with custom fields to Attio's database.
Properties
| Name | Meaning |
|---|---|
| Object | The UUID or slug identifying the object the created record should belong to. |
| Data | The JSON data containing the values for the new record's attributes, structured as key-value pairs where keys are attribute IDs or names and values are the attribute values to set. |
Output
JSON
json- The JSON response from the Attio API representing the created record, including its attributes and metadata.
Dependencies
- Requires an API key credential for authenticating with the Attio API.
Troubleshooting
- Ensure the 'Object' parameter is a valid UUID or slug of an existing object in Attio; otherwise, the API will return an error.
- The 'Data' property must be valid JSON and correctly formatted with attribute IDs or names as keys; invalid JSON or incorrect keys will cause request failures.
- Authentication errors may occur if the API key is missing, expired, or incorrect; verify the API credentials in the node settings.
Links
- Attio API Documentation - Create Record - Official documentation for creating records via the Attio API, detailing required parameters and request structure.