> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://apidocs.me-mate.net/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://apidocs.me-mate.net/_mcp/server.

# Send Text Service Message

POST https://business.me-mate.net/sendservicemessages/sendmessages
Content-Type: application/json

This endpoint allows you to send Text service messages to individual recipients via WhatsApp.

#### Request

- Method: POST
    
- URL: `https://business.me-mate.net/sendservicemessages/sendmessages`
    
- Headers:
    
    - Content-Type: application/json
        
- Body:
    
    - to (string): The recipient's number
        
    - text (object):
        
        - body (string): The message body text
            
        - preview_url (boolean): Indicates whether to include a preview URL
            
    - type (string): The type of message (e.g., text)
        
    - recipient_type (string): The type of recipient (e.g., individual)
        
    - messaging_product (string): The messaging product (e.g., WhatsApp)
        
    - api_key (string): Your production API key > [How to get Your API key?](#requirements)
        

#### Response

The response is in JSON format and follows the schema below:

- messaging_product (string): The messaging product used
    
- contacts (array): An array of contact objects
    
    - input (string): Input information
        
    - wa_id (string): WhatsApp ID
        
- messages (array): An array of message objects
    
    - id (string): Message ID

Reference: https://apidocs.me-mate.net/business-me-mate-net-ap-is-document-v-1-0/send-service-message-ap-is/for-production-production-env/send-text-service-message

## Request

### Body (application/json)

- `to` (string, required)
- `text` (object, required)
  - `body` (string, required)
  - `preview_url` (boolean, required)
- `type` (string, required)
- `api_key` (string, required)
- `recipient_type` (string, required)
- `messaging_product` (string, required)

## Response

### 200

OK

- `contacts` (list of object, required)
  - `input` (string, required)
  - `wa_id` (string, required)
- `messages` (list of object, required)
  - `id` (string, required)
- `messaging_product` (string, required)

## Examples

**Request**

```json
{
  "to": "recipient's number",
  "text": {
    "body": "Your-Message-body-text",
    "preview_url": true
  },
  "type": "text",
  "api_key": "Your production Api key",
  "recipient_type": "individual",
  "messaging_product": "whatsapp"
}
```

**Response**

```json
{
  "contacts": [
    {
      "input": "recipient's-number",
      "wa_id": "recipient's-number"
    }
  ],
  "messages": [
    {
      "id": "wamid.HBgMOTE3MzE5OTUwMzUwFQIAERgSREUyNzE3ODA5MjM3ODQ5NkUyAA=="
    }
  ],
  "messaging_product": "whatsapp"
}
```

**SDK Code**

```python
import requests

url = "https://business.me-mate.net/sendservicemessages/sendmessages"

payload = {
    "to": "recipient's number",
    "text": {
        "body": "Your-Message-body-text",
        "preview_url": True
    },
    "type": "text",
    "api_key": "Your production Api key",
    "recipient_type": "individual",
    "messaging_product": "whatsapp"
}
headers = {"Content-Type": "application/json"}

response = requests.post(url, json=payload, headers=headers)

print(response.json())
```

```javascript
const url = 'https://business.me-mate.net/sendservicemessages/sendmessages';
const options = {
  method: 'POST',
  headers: {'Content-Type': 'application/json'},
  body: '{"to":"recipient\'s number","text":{"body":"Your-Message-body-text","preview_url":true},"type":"text","api_key":"Your production Api key","recipient_type":"individual","messaging_product":"whatsapp"}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://business.me-mate.net/sendservicemessages/sendmessages"

	payload := strings.NewReader("{\n  \"to\": \"recipient's number\",\n  \"text\": {\n    \"body\": \"Your-Message-body-text\",\n    \"preview_url\": true\n  },\n  \"type\": \"text\",\n  \"api_key\": \"Your production Api key\",\n  \"recipient_type\": \"individual\",\n  \"messaging_product\": \"whatsapp\"\n}")

	req, _ := http.NewRequest("POST", url, payload)

	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://business.me-mate.net/sendservicemessages/sendmessages")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n  \"to\": \"recipient's number\",\n  \"text\": {\n    \"body\": \"Your-Message-body-text\",\n    \"preview_url\": true\n  },\n  \"type\": \"text\",\n  \"api_key\": \"Your production Api key\",\n  \"recipient_type\": \"individual\",\n  \"messaging_product\": \"whatsapp\"\n}"

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://business.me-mate.net/sendservicemessages/sendmessages")
  .header("Content-Type", "application/json")
  .body("{\n  \"to\": \"recipient's number\",\n  \"text\": {\n    \"body\": \"Your-Message-body-text\",\n    \"preview_url\": true\n  },\n  \"type\": \"text\",\n  \"api_key\": \"Your production Api key\",\n  \"recipient_type\": \"individual\",\n  \"messaging_product\": \"whatsapp\"\n}")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://business.me-mate.net/sendservicemessages/sendmessages', [
  'body' => '{
  "to": "recipient\'s number",
  "text": {
    "body": "Your-Message-body-text",
    "preview_url": true
  },
  "type": "text",
  "api_key": "Your production Api key",
  "recipient_type": "individual",
  "messaging_product": "whatsapp"
}',
  'headers' => [
    'Content-Type' => 'application/json',
  ],
]);

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("https://business.me-mate.net/sendservicemessages/sendmessages");
var request = new RestRequest(Method.POST);
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"to\": \"recipient's number\",\n  \"text\": {\n    \"body\": \"Your-Message-body-text\",\n    \"preview_url\": true\n  },\n  \"type\": \"text\",\n  \"api_key\": \"Your production Api key\",\n  \"recipient_type\": \"individual\",\n  \"messaging_product\": \"whatsapp\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = ["Content-Type": "application/json"]
let parameters = [
  "to": "recipient's number",
  "text": [
    "body": "Your-Message-body-text",
    "preview_url": true
  ],
  "type": "text",
  "api_key": "Your production Api key",
  "recipient_type": "individual",
  "messaging_product": "whatsapp"
] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "https://business.me-mate.net/sendservicemessages/sendmessages")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```