For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Help CenterAPI KeysStatusSign In
GuidesAPI ReferenceChangelog
GuidesAPI ReferenceChangelog
LogoLogo
Help CenterAPI KeysStatusSign In

Changelog

December 20, 2022
December 20, 2022
Was this page helpful?
Previous

December 8, 2022

Next
Built with

New parameters for transactional SMS messages

Route: https://developers.sendinblue.com/reference/sendtransacsms
For the Transactional SMS route, organisationPrefix is now added, which will be used as prefix within
the message content. This field is only mandatory for U.S. Carriers. +1 Country Code

1{
2 "sender":"Tester",
3 "recipient":"+18448614669432",
4 "content":"Hello, This is the Test message.. from beta.",
5 "type":"transactional",
6 "organisationPrefix":"Sendinblue"
7}

Route: https://developers.sendinblue.com/reference/createsmscampaign-1
Route: https://developers.sendinblue.com/reference/updatesmscampaign-1
For POST sms campaign creation and PUT sms campaign update, organisationField and unsubscribeInstruction are required for U.S Carriers.These two field are optional for others.
organisationPrefix - Brand name or organisation Name eg- sendinblue
unsubscribeInstruction- Instruction to unsubscribe from sms campaigns. Must have STOP keyword,

1{
2 "name":"Test Campaign",
3 "sender":"Tester",
4 "content":"This is Test sms camp",
5 "recipients":{
6 "listIds":[2],
7 "exclusionListIds":[]
8 },
9 "organisationPrefix":"Sendinblue",
10 "unsubscribeInstruction":"send STOP to unsubscribe campaign"
11}