Actions5
- Action Actions
Overview
This node enables sending WhatsApp messages and managing contacts through the CustomJe.com API. Specifically, the "Send Message" operation under the "Action" resource allows users to send text messages to specified WhatsApp numbers using a given WhatsApp instance.
Common scenarios include:
- Automating customer notifications or alerts via WhatsApp.
- Integrating WhatsApp messaging into workflows for marketing or support.
- Sending personalized messages triggered by events in other systems.
For example, you could use this node to send order confirmation messages to customers automatically after a purchase.
Properties
| Name | Meaning |
|---|---|
| CustomJe API Key | API key for authenticating requests to the CustomJe.com service. |
| Instance ID | Identifier of the WhatsApp instance used to send the message. |
| Access Token | Access token authorizing actions on the specified WhatsApp instance. |
| Phone Number | Destination WhatsApp number including country code but without the "+" prefix (e.g., 60123456789). |
| Message | The text content of the WhatsApp message to be sent. |
Output
The node outputs a JSON object containing the response from the CustomJe.com API after attempting to send the message. This typically includes status information about the message delivery request.
Example output structure:
{
"status": "success",
"messageId": "abc123xyz",
"details": "Message sent successfully"
}
No binary data is produced by this operation.
Dependencies
- Requires an active account with CustomJe.com and valid API credentials (API key, instance ID, access token).
- Network access to
https://api.customje.comendpoints. - Proper configuration of the input properties with correct authentication details.
Troubleshooting
- Invalid Credentials: If the API key, instance ID, or access token are incorrect or expired, the API will reject the request. Verify and update these values.
- Incorrect Phone Number Format: Ensure the phone number includes the country code but excludes the "+" sign.
- API Endpoint Errors: Network issues or downtime at CustomJe.com can cause failures. Check connectivity and service status.
- Unhandled Operation or Resource: Using unsupported operations or resources will throw errors indicating they are not implemented or unknown.
- Continue On Fail: If enabled, the node will continue processing subsequent items even if one fails, returning error messages per item.
Links and References
- CustomJe.com API Documentation (hypothetical link for reference)
- WhatsApp Business API general info: https://www.whatsapp.com/business/api
This summary focuses exclusively on the "Action" resource's "Send Message" operation as requested.