Whatsapp Cloud API [closed]
Can Whatsapp Cloud API be used for business as a reseller? like what is the difference between the new Whatsapp Cloud API and the API we get from Resellers?
Also, is there an API to automate the signup process?
Tony-Marketing-API.cn is a vibrant community dedicated to Facebook, Meta,Google Ads api, app development, Instagram, and related technologies. It offers valuable bug solutions, troubleshooting cases, and problem-solving strategies shared by users. Stay updated with real-world solutions, development tips, and the latest trends in digital marketing and app development.
Can Whatsapp Cloud API be used for business as a reseller? like what is the difference between the new Whatsapp Cloud API and the API we get from Resellers?
Also, is there an API to automate the signup process?
Suppose if the value of Line item (Cost per Unit) is $45.45 in the report that we get from Google Ad Manager 360 UI , the same report when extracted through a java application using ad manager API gives value '45454000' . Why is this conversion done ? is it specific to any API version? I'm using v202111 in my application.
I am using "WhatsApp Business On-Premises API" for submitting templates. When something is wrong with template i.e. formatting whatsapp throws exception in this format
{ "error": { "code": 100, "type": "OAuthException", "message": "Invalid parameter", "fbtrace_id": <id>, "is_transient": false, "error_subcode": 2388047, "error_user_msg": "Message body can't have more than two consecutive newline characters.", "error_user_title": "Message body format is Incorrect" } }
i want documentation for all the error_subcodes
so that i can translate them and show bases on the language for the user who is submitting the template. PS: i have seen https://developers.facebook.com/docs/whatsapp/on-premises/errors#error but doesn't give all the error_subcodes
fall under code 100.
i've also posted over community but couldn't get help there https://developers.facebook.com/community/threads/367295468710196/?post_id=367295472043529
I have a user list on my Google Ads account. I can access it, but I do not know how to clear it via the REST API.
Do you have any idea or examples?
Here is the request to read the list:
curl -f --request POST "https://googleads.googleapis.com/v10/customers/1111111111/googleAds:searchStream" \ --header "Content-Type: application/json" \ --header "developer-token: ${DEVTOKEN}" \ --header "Authorization: Bearer ${TOKEN}" \ --header "login-customer-id: 2222222222" \ --data "{ query:'SELECT user_list.id, user_list.name FROM user_list'}"
Thanks, Nicolas
Meta recently released the cloud api to send messages from Whatsapp business, but I can't send it from the google app script.
I have this code, it runs fine... but it doesn't reach the user
function SendToUser() { var headers = { 'Authorization' : 'Bearer ACCESS_TOKEN', 'Content-Type': 'application/json' }; var payload = { "messaging_product": "whatsapp", "recipient_type": "individual", "to": "PHONE_NUMBER", "type": "text", "text": { // the text object "preview_url": false, "body": "MESSAGE_CONTENT" } } var options = { method: "POST", headers: headers, payload: JSON.stringify(payload) // <--- Modified } let response = UrlFetchApp.fetch("https://graph.facebook.com/v13.0/FROM_PHONE_NUMBER_ID/messages", options); Logger.log(response) }