Connect Secure icon

Connect Secure

Consume Connect Secure API

Actions222

Overview

This node allows you to create a new tag in the Connect Secure system by sending user-specific data. It is useful when you want to programmatically add tags associated with a particular user, for example, to categorize or label resources dynamically based on user input or external triggers.

Practical examples include:

  • Automatically tagging user sessions or activities for analytics.
  • Adding metadata tags to user profiles or records in an external system.
  • Organizing content or resources by user-defined tags during workflow automation.

Properties

Name Meaning
X USER ID The unique identifier of the user for whom the tag is being created.
Data JSON object containing the details of the tag to be created. This should be valid JSON.

Output

The node outputs the response from the Connect Secure API after creating the tag. The output is structured as JSON and typically contains information about the newly created tag, such as its ID, name, and any other metadata returned by the API.

If the API supports binary data in responses (not indicated here), it would be included accordingly, but this node primarily deals with JSON data.

Dependencies

  • Requires an API key credential for authenticating with the Connect Secure API.
  • The node depends on the Connect Secure API endpoint that handles tag creation.
  • No additional environment variables are explicitly required beyond the API authentication setup.

Troubleshooting

  • Missing or invalid X USER ID: Ensure the "X USER ID" property is provided and correctly formatted; otherwise, the API may reject the request.
  • Invalid JSON in Data property: The "Data" field must contain valid JSON. Malformed JSON will cause parsing errors before the request is sent.
  • Authentication errors: Verify that the API key credential is correctly configured and has permissions to create tags.
  • API errors: If the API returns errors, check the response message for details such as rate limits, permission issues, or malformed requests.

Links and References

  • Connect Secure API documentation (for tag creation endpoint) – consult your API provider's official docs.
  • JSON formatting guides to ensure correct input in the "Data" property.

Discussion