Send a message

Note:

Before you can get started, you need to do the following:

Using the Conversation API, you can send messages to any channel you have configured. This tutorial shows you how to set up and send a message in a Python application.

Steps:
  1. Set up your Python application
  2. Send your first message

Set up your Python application

Note:

This tutorial uses basic authentication for testing purposes. We recommend OAuth 2.0 authentication in a production environment. Read more about authentication methods here.

  1. Create a new file named send-message.py and paste the provided "send-message.py" code found on this page into the file. This code sends a text message.
Note:

This sample code is configured for the US region. If your Conversation API app wasn't created in the US region, replace all instances of https://us.conversation.api.sinch.com with https://eu.conversation.api.sinch.com in the sample code.

send-message.py

This code sample is to be used with the instructions on this page to build an application that will send a message.

# Find your App ID at dashboard.sinch.com/convapi/apps
# Find your Project ID at dashboard.sinch.com/settings/project-management
# Get your Access Key and Access Secret at dashboard.sinch.com/settings/access-keys
import requests
import base64

appId = ""
accessKey = ""
accessSecret = ""
projectId = ""
channel = ""
identity = ""
url = "https://us.conversation.api.sinch.com/v1/projects/" + projectId + "/messages:send"

data = accessKey + ":" + accessSecret
encodedBytes = base64.b64encode(data.encode("utf-8"))
accessToken = str(encodedBytes, "utf-8")

payload = {
  "app_id": appId,
  "recipient": {
      "identified_by": {
          "channel_identities": [
            {
                "channel": channel,
                "identity": identity
            }  
            ]
      }
  },
  "message": {
      "text_message": {
          "text": "Text message from Sinch Conversation API."
      }
  }  
}

headers = {
  "Content-Type": "application/json",
  "Authorization": "Basic " + accessToken
}

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

data = response.json()
print(data)
  1. Assign your values to the following parameters:
ParameterYour value
appIdFind your app ID on your Sinch dashboard.
accessKeyFind your access key on your Sinch dashboard.
accessSecretFind your access secret on your Sinch dashboard.
Note: Access secrets are only available during initial key creation.
projectIdFind your project ID on your Sinch dashboard.
channelThe channel you want to use to send the message. Available channels are configured for the app on your Sinch dashboard. This guide assumes you've started with an SMS channel, but you can use any channel configured for your app:
  • SMS
  • MESSENGER
  • MMS
  • RCS
  • WHATSAPP
  • VIBER
  • VIBERBM
  • INSTAGRAM
  • TELEGRAM
  • KAKAOTALK
  • APPLEBC
  • LINE
  • WECHAT
identityThe ID of the contact to which you want to send the message.
  1. Save the file.

Send your first message

Now you can execute the code and send your test message. Open a command prompt or terminal to the location where your Python file is saved and run the following command:

Copy
Copied
python send-message.py

You should receive a message in your configured messaging platform.

Next steps

Now that you know how to send a message, next learn how to handle an incoming message.

Additional resources

Read the links below to learn more:

Was this page helpful?

send-message.py

This code sample is to be used with the instructions on this page to build an application that will send a message.

# Find your App ID at dashboard.sinch.com/convapi/apps
# Find your Project ID at dashboard.sinch.com/settings/project-management
# Get your Access Key and Access Secret at dashboard.sinch.com/settings/access-keys
import requests
import base64

appId = ""
accessKey = ""
accessSecret = ""
projectId = ""
channel = ""
identity = ""
url = "https://us.conversation.api.sinch.com/v1/projects/" + projectId + "/messages:send"

data = accessKey + ":" + accessSecret
encodedBytes = base64.b64encode(data.encode("utf-8"))
accessToken = str(encodedBytes, "utf-8")

payload = {
  "app_id": appId,
  "recipient": {
      "identified_by": {
          "channel_identities": [
            {
                "channel": channel,
                "identity": identity
            }  
            ]
      }
  },
  "message": {
      "text_message": {
          "text": "Text message from Sinch Conversation API."
      }
  }  
}

headers = {
  "Content-Type": "application/json",
  "Authorization": "Basic " + accessToken
}

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

data = response.json()
print(data)