Actions15
- Messages Actions
- Profile Actions
- Friends Actions
- Templates Actions
Overview
The node interacts with the KakaoTalk API to retrieve the status of a specific message sent via KakaoTalk messaging services. This operation is useful for tracking whether a message has been delivered, read, or encountered any issues after being sent. Practical scenarios include monitoring transactional messages, customer notifications, or marketing campaigns to ensure message delivery and engagement.
Properties
| Name | Meaning |
|---|---|
| Message ID | The unique identifier of the message whose status you want to check |
Output
The output JSON contains the status information of the specified message as returned by the KakaoTalk API. This typically includes details such as delivery status, read receipts, timestamps, and any error codes or messages related to the message's lifecycle. The exact structure depends on the KakaoTalk API response for message status queries.
No binary data output is involved in this operation.
Dependencies
- Requires an API key credential for authenticating requests to the KakaoTalk API.
- The node uses the KakaoTalk REST API endpoint at
https://kapi.kakao.com. - Proper configuration of the API key credential within n8n is necessary for successful communication.
Troubleshooting
Common Issues:
- Invalid or missing Message ID will cause the API call to fail.
- Expired or invalid API key credentials will result in authentication errors.
- Network connectivity issues can prevent reaching the KakaoTalk API endpoint.
Error Messages:
"Unknown operation: getMessageStatus": Indicates a misconfiguration or typo in the operation parameter; ensure "Get Message Status" is selected.- API errors returned from KakaoTalk (e.g., unauthorized, not found) will be passed through; verify the message ID and API key validity.
Resolution Tips:
- Double-check the Message ID input for correctness.
- Confirm that the API key credential is valid and has the required permissions.
- Ensure network access to
https://kapi.kakao.comis not blocked by firewalls.