@@ -35,6 +35,7 @@ Configure the integration within Autohive using platform authentication for What
3535- ** Inputs:**
3636 - ` to ` (required): Recipient's phone number in E.164 format (e.g., +1234567890)
3737 - ` message ` (required): Text content of the message to send
38+ - ` phone_number_id ` (required): The Phone Number ID associated with the WhatsApp Business account
3839- ** Outputs:**
3940 - ` message_id ` : Unique WhatsApp message identifier if successful
4041 - ` success ` : Boolean indicating if the message was sent successfully
@@ -46,6 +47,7 @@ Configure the integration within Autohive using platform authentication for What
4647- ** Inputs:**
4748 - ` to ` (required): Recipient's phone number in E.164 format
4849 - ` template_name ` (required): Name of the approved message template
50+ - ` phone_number_id ` (required): The Phone Number ID associated with the WhatsApp Business account
4951 - ` language_code ` (optional): Template language code (default: "en")
5052 - ` parameters ` (optional): Array of string parameters for template substitution
5153- ** Outputs:**
@@ -60,6 +62,7 @@ Configure the integration within Autohive using platform authentication for What
6062 - ` to ` (required): Recipient's phone number in E.164 format
6163 - ` media_type ` (required): Media type - "image", "document", "audio", or "video"
6264 - ` media_url ` (required): HTTPS URL of the media content to send
65+ - ` phone_number_id ` (required): The Phone Number ID associated with the WhatsApp Business account
6366 - ` caption ` (optional): Text caption for the media (images, videos, documents)
6467 - ` filename ` (optional): Custom filename for document type media
6568- ** Outputs:**
@@ -89,7 +92,8 @@ Configure the integration within Autohive using platform authentication for What
8992``` json
9093{
9194 "to" : " +1234567890" ,
92- "message" : " Welcome to our service! Thank you for signing up."
95+ "message" : " Welcome to our service! Thank you for signing up." ,
96+ "phone_number_id" : " 123456789012345"
9397}
9498```
9599
@@ -99,6 +103,7 @@ Configure the integration within Autohive using platform authentication for What
99103{
100104 "to" : " +1234567890" ,
101105 "template_name" : " customer_welcome" ,
106+ "phone_number_id" : " 123456789012345" ,
102107 "language_code" : " en" ,
103108 "parameters" : [" John Doe" , " Premium" ]
104109}
@@ -111,6 +116,7 @@ Configure the integration within Autohive using platform authentication for What
111116 "to" : " +1234567890" ,
112117 "media_type" : " document" ,
113118 "media_url" : " https://yourdomain.com/invoices/invoice-123.pdf" ,
119+ "phone_number_id" : " 123456789012345" ,
114120 "filename" : " Invoice-123.pdf" ,
115121 "caption" : " Your invoice for Order #123"
116122}
0 commit comments