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 select option on a specified attribute of an object or list. It is useful for dynamically adding options to attributes within Attio's data structures, such as adding a new choice to a dropdown attribute on a contact or list. For example, you can use this node to add a new 'Medium' option to a communication channel attribute on a contact record.
Use Case Examples
- Adding a new select option 'Medium' to an attribute on a list identified by a UUID.
- Creating a select option on an attribute of an object to extend its possible values dynamically.
Properties
| Name | Meaning |
|---|---|
| Target | Specifies whether the attribute belongs to an object or a list. Options are 'objects' or 'lists'. |
| Identifier | A UUID or slug that identifies the specific object or list the attribute belongs to. |
| Attribute | A UUID or slug identifying the attribute to which the select option will be added. |
| Data | JSON data representing the select option to create, e.g., {"title": "Medium"}. |
Output
JSON
json- The JSON response from the Attio API after creating the select option, containing details of the created option.
Dependencies
- Requires an API key credential for Attio API authentication.
Troubleshooting
- Common issues include invalid UUIDs or slugs for target, identifier, or attribute parameters, resulting in API errors.
- Malformed JSON in the 'Data' property can cause request failures; ensure valid JSON format.
- Authorization errors if the API key credential is missing or invalid.
Links
- Attio API Documentation - Official API documentation for understanding endpoints and data structures.