ZioYou Board icon

ZioYou Board

지오유 그룹웨어에서 게시방에 글을 접근하는 API입니다.

Actions3

Overview

This node integrates with the "ZioYou Board" API to monitor events within a single post on the board, specifically focusing on when a new comment is created. It is useful for workflows that need to react immediately to user interactions such as comments being added to posts, enabling automation like notifications, logging, or further processing of the comment data.

For example, you could use this node to trigger an alert whenever someone comments on a specific post, or to update a database record reflecting the latest activity on that post.

Properties

Name Meaning
게시글ID (doc) The ID identifying the post where the event occurs. Use the post ID generated by the API.
처리일자 (transDate) The date when the post is processed. This can be set to specify the processing date.

These properties are required and must be provided to identify the target post and the relevant processing date for the event.

Output

The node outputs JSON data representing the event details related to the new comment on the specified post. The exact structure is not fully detailed in the source, but it typically includes information about the comment event such as comment content, author, timestamp, and possibly metadata about the post.

No binary data output is indicated in the code.

Dependencies

  • Requires an API key credential to authenticate with the ZioYou Board API.
  • The base URL for API requests is https://api.zio.run.
  • The node sends HTTP GET requests to endpoints related to board events.
  • Proper configuration of the API authentication credential in n8n is necessary.

Troubleshooting

  • Common issues:

    • Incorrect or missing 게시글ID (post ID) will cause the API request to fail or return no event data.
    • Invalid or expired API credentials will result in authentication errors.
    • Date format issues: The 처리일자 (processing date) is converted to ISO string format truncated to the date part; incorrect input formats may cause unexpected behavior.
  • Error messages:

    • Authentication failures usually indicate problems with the API key setup.
    • API response errors might occur if the post ID does not exist or the API endpoint is unreachable.

To resolve these, verify the API key credential, ensure the post ID is correct and exists, and confirm network connectivity to the API endpoint.

Links and References

Discussion