Actions3
- 게시글 작업 Actions
- 하나의 게시글 안에 있는 이벤트 Actions
Overview
This node integrates with the ZioYou Board API to create new posts in specified bulletin rooms. It is useful for automating content publishing workflows within an organization, such as posting company-wide announcements, sharing travel-related documents, or managing HR notices.
Typical use cases include:
- Automatically creating a new announcement post in a designated company bulletin board.
- Publishing updates or documents related to specific projects or departments.
- Streamlining document management by programmatically adding posts to relevant rooms.
Properties
| Name | Meaning |
|---|---|
| 게시방 선택 | Select the bulletin room where the new post will be created. Options: 전사공지, 제주도 출장 관련자료, 인사공지, 문서관리대장 |
Output
The node outputs JSON data representing the response from the ZioYou Board API after creating a new post. This typically includes details about the newly created post such as its ID, creation timestamp, and any metadata returned by the API.
If the API supports binary data (e.g., attachments), the node would handle it accordingly, but based on the provided code and properties, the output focuses on JSON responses related to post creation.
Dependencies
- Requires an API key credential for authenticating requests to the ZioYou Board API.
- The base URL for API requests is
https://api.zio.run. - The node sends requests to endpoints like
/zioyou-board/api/v1/room/{roomName}/docwhere{roomName}is dynamically set based on the selected bulletin room.
Troubleshooting
Common Issues:
- Incorrect or missing API authentication token can cause authorization errors.
- Selecting an invalid or unsupported bulletin room value may result in request failures.
- Network connectivity issues could prevent successful API calls.
Error Messages:
- Authorization errors typically indicate problems with the API key; ensure the credential is correctly configured.
- HTTP 404 or similar errors may mean the specified room does not exist or the endpoint URL is incorrect.
- Validation errors might occur if required fields are missing or malformed.
To resolve these issues, verify API credentials, confirm the selected bulletin room is valid, and check network connectivity.
Links and References
- ZioYou Board API Documentation (assumed base URL for reference)
- n8n documentation on Creating Custom Nodes