Skip to content

SendTemplate#

The method is aimed for sending a template message from the official API. It is useful for bulk emailing. To send this type of message, you must have or previously create a message template. If you do not have your own template, then we can help you. For this, please contact us via email support@green-api.com or in any other convenient way.

בַּקָשָׁה#

כדי לשלוח הודעה, עליך לבצע בקשה בכתובת:

POST
{{apiUrl}}/waInstance{{idInstance}}/sendTemplate/{{apiTokenInstance}}

לפרמטרים של בקשת apiUrl, idInstance ו-apiTokenInstance, עיין ב לפני שמתחילים סָעִיף.

בקש פרמטרים#

פָּרָמֶטֶר סוּג הֶכְרֵחִי תֵאוּר
chatId string כֵּן Chat Id
namespace string כֵּן שם מרחב השמות מה-API הרשמי
namespace string כֵּן שם תבנית הודעה
languageCode string כֵּן קוד שפת לוקליזציה של תבנית הודעה
params array לֹא מערך פרמטרים בשימוש בתבנית. חובה אם התבנית משתמשת בפרמטרים
quotedMessageId string לֹא מזהה הודעה מצוטט. אם קיימת, ההודעה תישלח בציטוט הודעת הצ'אט שצוינה

params פרמטרים של מערך

פָּרָמֶטֶר סוּג תֵאוּר
default string ערך ברירת המחדל של פרמטר

טקסט בקשה לדוגמה#

שליחת הודעה לצ'אט אישי:

{
    "chatId": "11001234567@c.us",
    "namespace": "not_existing_namespace",
    "name": "not_existing_template",
    "languageCode": "ru",
    "params": [
        {"default": "Dear customer"}
    ]
}
## תְגוּבָה {#response}

### פרמטרי תגובה {#response-parameters}

פָּרָמֶטֶר | סוּג |  תֵאוּר
----- | ----- | -----
`idMessage ` | **string** | Sent message Id 

### דוגמה תגובה {#response-example-body}

```json
{
    "idMessage": "3EB0C767D097B7C7C030"
}

SendTemplate שגיאות#

לרשימה של שגיאות משותפות לכל השיטות, עיין ב שגיאות נפוצות סָעִיף

curl דוּגמָה#

```
curl --location --request POST '{{apiUrl}}/waInstance{{idInstance}}/sendTemplate/{{apiTokenInstance}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "chatId": "11001234567@c.us",
    "namespace": "not_existing_namespace",
    "name": "not_existing_template",
    "languageCode": "ru",
    "params": [
        {"default": "Dear customer"}
    ]
}'
```