Bot API Send
neuron_bot_api_sendSend an outbound message through the bot API to a specified phone number. Supports text and media messages. Requires a valid API key.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | Recipient's phone number (E.164 format, e.g., '+2348012345678') | |
| apiKey | Yes | Bot API key with 'nrn_' prefix for authentication | |
| sendAt | No | ISO 8601 date-time for scheduled delivery (e.g., '2025-12-31T10:00:00Z'). Message sends immediately if omitted. | |
| message | Yes | The message text to send to the recipient | |
| mediaUrl | No | Public URL of the media file to attach (required for non-text message types) | |
| channelId | No | Unique identifier (UUID) of a specific WhatsApp channel to send from. Uses the bot's primary channel if omitted. | |
| messageType | No | Type of message to send: 'text', 'image', 'video', 'audio', or 'document' (default: 'text') |