Appwrite Messaging helps you communicate with your users through push notifications, emails, and SMS text messages. Sending personalized communication for marketing, updates, and realtime alerts can increase user engagement and retention. You can also use Appwrite Messaging to implement security checks and custom authentication flows.
You can find guides and examples on using the Messaging API in the Appwrite Messaging product pages.
https://cloud.appwrite.io/v1
List messages
Get a list of all messages from the current Appwrite project.
Request
queries Array of query strings generated using the Query class provided by the SDK. Learn more about queries. Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: scheduledAt, deliveredAt, deliveredTotal, status, description, providerType
search Search term to filter your list results. Max length: 256 chars.
Response
200
GET /messaging/messages
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.listMessages(
[], // queries (optional)
'<SEARCH>' // search (optional)
);
Create email
Create a new email message.
Request
messageId requiredMessage ID. Choose a custom ID or generate a random ID with
ID.unique()
. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.subject requiredEmail Subject.
content requiredEmail Content.
topics List of Topic IDs.
users List of User IDs.
targets List of Targets IDs.
cc Array of target IDs to be added as CC.
bcc Array of target IDs to be added as BCC.
attachments Array of compound ID strings of bucket IDs and file IDs to be attached to the email. They should be formatted as <BUCKET_ID>:<FILE_ID>.
draft Is message a draft
html Is content of type HTML
scheduledAt Scheduled delivery time for message in ISO 8601 format. DateTime value must be in future.
Response
201
POST /messaging/messages/email
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.createEmail(
'<MESSAGE_ID>', // messageId
'<SUBJECT>', // subject
'<CONTENT>', // content
[], // topics (optional)
[], // users (optional)
[], // targets (optional)
[], // cc (optional)
[], // bcc (optional)
[], // attachments (optional)
false, // draft (optional)
false, // html (optional)
'' // scheduledAt (optional)
);
Update email
Update an email message by its unique ID.
Request
messageId requiredMessage ID.
topics List of Topic IDs.
users List of User IDs.
targets List of Targets IDs.
subject Email Subject.
content Email Content.
draft Is message a draft
html Is content of type HTML
cc Array of target IDs to be added as CC.
bcc Array of target IDs to be added as BCC.
scheduledAt Scheduled delivery time for message in ISO 8601 format. DateTime value must be in future.
attachments Array of compound ID strings of bucket IDs and file IDs to be attached to the email. They should be formatted as <BUCKET_ID>:<FILE_ID>.
Response
200
PATCH /messaging/messages/email/{messageId}
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.updateEmail(
'<MESSAGE_ID>', // messageId
[], // topics (optional)
[], // users (optional)
[], // targets (optional)
'<SUBJECT>', // subject (optional)
'<CONTENT>', // content (optional)
false, // draft (optional)
false, // html (optional)
[], // cc (optional)
[], // bcc (optional)
'', // scheduledAt (optional)
[] // attachments (optional)
);
Create push notification
Create a new push notification.
Request
messageId requiredMessage ID. Choose a custom ID or generate a random ID with
ID.unique()
. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.title requiredTitle for push notification.
body requiredBody for push notification.
topics List of Topic IDs.
users List of User IDs.
targets List of Targets IDs.
data Additional Data for push notification.
action Action for push notification.
image Image for push notification. Must be a compound bucket ID to file ID of a jpeg, png, or bmp image in Appwrite Storage. It should be formatted as <BUCKET_ID>:<FILE_ID>.
icon Icon for push notification. Available only for Android and Web Platform.
sound Sound for push notification. Available only for Android and IOS Platform.
color Color for push notification. Available only for Android Platform.
tag Tag for push notification. Available only for Android Platform.
badge Badge for push notification. Available only for IOS Platform.
draft Is message a draft
scheduledAt Scheduled delivery time for message in ISO 8601 format. DateTime value must be in future.
Response
201
POST /messaging/messages/push
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.createPush(
'<MESSAGE_ID>', // messageId
'<TITLE>', // title
'<BODY>', // body
[], // topics (optional)
[], // users (optional)
[], // targets (optional)
{}, // data (optional)
'<ACTION>', // action (optional)
'[ID1:ID2]', // image (optional)
'<ICON>', // icon (optional)
'<SOUND>', // sound (optional)
'<COLOR>', // color (optional)
'<TAG>', // tag (optional)
'<BADGE>', // badge (optional)
false, // draft (optional)
'' // scheduledAt (optional)
);
Update push notification
Update a push notification by its unique ID.
Request
messageId requiredMessage ID.
topics List of Topic IDs.
users List of User IDs.
targets List of Targets IDs.
title Title for push notification.
body Body for push notification.
data Additional Data for push notification.
action Action for push notification.
image Image for push notification. Must be a compound bucket ID to file ID of a jpeg, png, or bmp image in Appwrite Storage. It should be formatted as <BUCKET_ID>:<FILE_ID>.
icon Icon for push notification. Available only for Android and Web platforms.
sound Sound for push notification. Available only for Android and iOS platforms.
color Color for push notification. Available only for Android platforms.
tag Tag for push notification. Available only for Android platforms.
badge Badge for push notification. Available only for iOS platforms.
draft Is message a draft
scheduledAt Scheduled delivery time for message in ISO 8601 format. DateTime value must be in future.
Response
200
PATCH /messaging/messages/push/{messageId}
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.updatePush(
'<MESSAGE_ID>', // messageId
[], // topics (optional)
[], // users (optional)
[], // targets (optional)
'<TITLE>', // title (optional)
'<BODY>', // body (optional)
{}, // data (optional)
'<ACTION>', // action (optional)
'[ID1:ID2]', // image (optional)
'<ICON>', // icon (optional)
'<SOUND>', // sound (optional)
'<COLOR>', // color (optional)
'<TAG>', // tag (optional)
null, // badge (optional)
false, // draft (optional)
'' // scheduledAt (optional)
);
Create SMS
Create a new SMS message.
Request
messageId requiredMessage ID. Choose a custom ID or generate a random ID with
ID.unique()
. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.content requiredSMS Content.
topics List of Topic IDs.
users List of User IDs.
targets List of Targets IDs.
draft Is message a draft
scheduledAt Scheduled delivery time for message in ISO 8601 format. DateTime value must be in future.
Response
201
POST /messaging/messages/sms
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.createSms(
'<MESSAGE_ID>', // messageId
'<CONTENT>', // content
[], // topics (optional)
[], // users (optional)
[], // targets (optional)
false, // draft (optional)
'' // scheduledAt (optional)
);
Update SMS
Update an email message by its unique ID.
PATCH /messaging/messages/sms/{messageId}
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.updateSms(
'<MESSAGE_ID>', // messageId
[], // topics (optional)
[], // users (optional)
[], // targets (optional)
'<CONTENT>', // content (optional)
false, // draft (optional)
'' // scheduledAt (optional)
);
GET /messaging/messages/{messageId}
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.getMessage(
'<MESSAGE_ID>' // messageId
);
Delete message
Delete a message. If the message is not a draft or scheduled, but has been sent, this will not recall the message.
Request
messageId requiredMessage ID.
Response
204
DELETE /messaging/messages/{messageId}
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.delete(
'<MESSAGE_ID>' // messageId
);
List message logs
Get the message activity logs listed by its unique ID.
Request
messageId requiredMessage ID.
queries Array of query strings generated using the Query class provided by the SDK. Learn more about queries. Only supported methods are limit and offset
Response
200
GET /messaging/messages/{messageId}/logs
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.listMessageLogs(
'<MESSAGE_ID>', // messageId
[] // queries (optional)
);
List message targets
Get a list of the targets associated with a message.
Request
messageId requiredMessage ID.
queries Array of query strings generated using the Query class provided by the SDK. Learn more about queries. Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: userId, providerId, identifier, providerType
Response
200
GET /messaging/messages/{messageId}/targets
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.listTargets(
'<MESSAGE_ID>', // messageId
[] // queries (optional)
);
List providers
Get a list of all providers from the current Appwrite project.
Request
queries Array of query strings generated using the Query class provided by the SDK. Learn more about queries. Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: name, provider, type, enabled
search Search term to filter your list results. Max length: 256 chars.
Response
200
GET /messaging/providers
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.listProviders(
[], // queries (optional)
'<SEARCH>' // search (optional)
);
Create APNS provider
Create a new Apple Push Notification service provider.
Request
providerId requiredProvider ID. Choose a custom ID or generate a random ID with
ID.unique()
. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.name requiredProvider name.
authKey APNS authentication key.
authKeyId APNS authentication key ID.
teamId APNS team ID.
bundleId APNS bundle ID.
sandbox Use APNS sandbox environment.
enabled Set as enabled.
Response
201
POST /messaging/providers/apns
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.createApnsProvider(
'<PROVIDER_ID>', // providerId
'<NAME>', // name
'<AUTH_KEY>', // authKey (optional)
'<AUTH_KEY_ID>', // authKeyId (optional)
'<TEAM_ID>', // teamId (optional)
'<BUNDLE_ID>', // bundleId (optional)
false, // sandbox (optional)
false // enabled (optional)
);
Update APNS provider
Update a Apple Push Notification service provider by its unique ID.
Request
providerId requiredProvider ID.
name Provider name.
enabled Set as enabled.
authKey APNS authentication key.
authKeyId APNS authentication key ID.
teamId APNS team ID.
bundleId APNS bundle ID.
sandbox Use APNS sandbox environment.
Response
200
PATCH /messaging/providers/apns/{providerId}
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.updateApnsProvider(
'<PROVIDER_ID>', // providerId
'<NAME>', // name (optional)
false, // enabled (optional)
'<AUTH_KEY>', // authKey (optional)
'<AUTH_KEY_ID>', // authKeyId (optional)
'<TEAM_ID>', // teamId (optional)
'<BUNDLE_ID>', // bundleId (optional)
false // sandbox (optional)
);
Create FCM provider
Create a new Firebase Cloud Messaging provider.
Request
providerId requiredProvider ID. Choose a custom ID or generate a random ID with
ID.unique()
. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.name requiredProvider name.
serviceAccountJSON FCM service account JSON.
enabled Set as enabled.
Response
201
POST /messaging/providers/fcm
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.createFcmProvider(
'<PROVIDER_ID>', // providerId
'<NAME>', // name
{}, // serviceAccountJSON (optional)
false // enabled (optional)
);
Update FCM provider
Update a Firebase Cloud Messaging provider by its unique ID.
Request
providerId requiredProvider ID.
name Provider name.
enabled Set as enabled.
serviceAccountJSON FCM service account JSON.
Response
200
PATCH /messaging/providers/fcm/{providerId}
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.updateFcmProvider(
'<PROVIDER_ID>', // providerId
'<NAME>', // name (optional)
false, // enabled (optional)
{} // serviceAccountJSON (optional)
);
Create Mailgun provider
Create a new Mailgun provider.
Request
providerId requiredProvider ID. Choose a custom ID or generate a random ID with
ID.unique()
. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.name requiredProvider name.
apiKey Mailgun API Key.
domain Mailgun Domain.
isEuRegion Set as EU region.
fromName Sender Name.
fromEmail Sender email address.
replyToName Name set in the reply to field for the mail. Default value is sender name. Reply to name must have reply to email as well.
replyToEmail Email set in the reply to field for the mail. Default value is sender email. Reply to email must have reply to name as well.
enabled Set as enabled.
Response
201
POST /messaging/providers/mailgun
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.createMailgunProvider(
'<PROVIDER_ID>', // providerId
'<NAME>', // name
'<API_KEY>', // apiKey (optional)
'<DOMAIN>', // domain (optional)
false, // isEuRegion (optional)
'<FROM_NAME>', // fromName (optional)
'email@example.com', // fromEmail (optional)
'<REPLY_TO_NAME>', // replyToName (optional)
'email@example.com', // replyToEmail (optional)
false // enabled (optional)
);
Update Mailgun provider
Update a Mailgun provider by its unique ID.
Request
providerId requiredProvider ID.
name Provider name.
apiKey Mailgun API Key.
domain Mailgun Domain.
isEuRegion Set as EU region.
enabled Set as enabled.
fromName Sender Name.
fromEmail Sender email address.
replyToName Name set in the reply to field for the mail. Default value is sender name.
replyToEmail Email set in the reply to field for the mail. Default value is sender email.
Response
200
PATCH /messaging/providers/mailgun/{providerId}
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.updateMailgunProvider(
'<PROVIDER_ID>', // providerId
'<NAME>', // name (optional)
'<API_KEY>', // apiKey (optional)
'<DOMAIN>', // domain (optional)
false, // isEuRegion (optional)
false, // enabled (optional)
'<FROM_NAME>', // fromName (optional)
'email@example.com', // fromEmail (optional)
'<REPLY_TO_NAME>', // replyToName (optional)
'<REPLY_TO_EMAIL>' // replyToEmail (optional)
);
Create Msg91 provider
Create a new MSG91 provider.
Request
providerId requiredProvider ID. Choose a custom ID or generate a random ID with
ID.unique()
. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.name requiredProvider name.
templateId Msg91 template ID
senderId Msg91 sender ID.
authKey Msg91 auth key.
enabled Set as enabled.
Response
201
POST /messaging/providers/msg91
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.createMsg91Provider(
'<PROVIDER_ID>', // providerId
'<NAME>', // name
'<TEMPLATE_ID>', // templateId (optional)
'<SENDER_ID>', // senderId (optional)
'<AUTH_KEY>', // authKey (optional)
false // enabled (optional)
);
Update Msg91 provider
Update a MSG91 provider by its unique ID.
Request
providerId requiredProvider ID.
name Provider name.
enabled Set as enabled.
templateId Msg91 template ID.
senderId Msg91 sender ID.
authKey Msg91 auth key.
Response
200
PATCH /messaging/providers/msg91/{providerId}
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.updateMsg91Provider(
'<PROVIDER_ID>', // providerId
'<NAME>', // name (optional)
false, // enabled (optional)
'<TEMPLATE_ID>', // templateId (optional)
'<SENDER_ID>', // senderId (optional)
'<AUTH_KEY>' // authKey (optional)
);
Create Sendgrid provider
Create a new Sendgrid provider.
Request
providerId requiredProvider ID. Choose a custom ID or generate a random ID with
ID.unique()
. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.name requiredProvider name.
apiKey Sendgrid API key.
fromName Sender Name.
fromEmail Sender email address.
replyToName Name set in the reply to field for the mail. Default value is sender name.
replyToEmail Email set in the reply to field for the mail. Default value is sender email.
enabled Set as enabled.
Response
201
POST /messaging/providers/sendgrid
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.createSendgridProvider(
'<PROVIDER_ID>', // providerId
'<NAME>', // name
'<API_KEY>', // apiKey (optional)
'<FROM_NAME>', // fromName (optional)
'email@example.com', // fromEmail (optional)
'<REPLY_TO_NAME>', // replyToName (optional)
'email@example.com', // replyToEmail (optional)
false // enabled (optional)
);
Update Sendgrid provider
Update a Sendgrid provider by its unique ID.
Request
providerId requiredProvider ID.
name Provider name.
enabled Set as enabled.
apiKey Sendgrid API key.
fromName Sender Name.
fromEmail Sender email address.
replyToName Name set in the Reply To field for the mail. Default value is Sender Name.
replyToEmail Email set in the Reply To field for the mail. Default value is Sender Email.
Response
200
PATCH /messaging/providers/sendgrid/{providerId}
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.updateSendgridProvider(
'<PROVIDER_ID>', // providerId
'<NAME>', // name (optional)
false, // enabled (optional)
'<API_KEY>', // apiKey (optional)
'<FROM_NAME>', // fromName (optional)
'email@example.com', // fromEmail (optional)
'<REPLY_TO_NAME>', // replyToName (optional)
'<REPLY_TO_EMAIL>' // replyToEmail (optional)
);
Create SMTP provider
Create a new SMTP provider.
Request
providerId requiredProvider ID. Choose a custom ID or generate a random ID with
ID.unique()
. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.name requiredProvider name.
host requiredSMTP hosts. Either a single hostname or multiple semicolon-delimited hostnames. You can also specify a different port for each host such as
smtp1.example.com:25;smtp2.example.com
. You can also specify encryption type, for example:tls://smtp1.example.com:587;ssl://smtp2.example.com:465"
. Hosts will be tried in order.port The default SMTP server port.
username Authentication username.
password Authentication password.
encryption Encryption type. Can be omitted, 'ssl', or 'tls'
autoTLS Enable SMTP AutoTLS feature.
mailer The value to use for the X-Mailer header.
fromName Sender Name.
fromEmail Sender email address.
replyToName Name set in the reply to field for the mail. Default value is sender name.
replyToEmail Email set in the reply to field for the mail. Default value is sender email.
enabled Set as enabled.
Response
201
POST /messaging/providers/smtp
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.createSmtpProvider(
'<PROVIDER_ID>', // providerId
'<NAME>', // name
'<HOST>', // host
1, // port (optional)
'<USERNAME>', // username (optional)
'<PASSWORD>', // password (optional)
sdk.SmtpEncryption.None, // encryption (optional)
false, // autoTLS (optional)
'<MAILER>', // mailer (optional)
'<FROM_NAME>', // fromName (optional)
'email@example.com', // fromEmail (optional)
'<REPLY_TO_NAME>', // replyToName (optional)
'email@example.com', // replyToEmail (optional)
false // enabled (optional)
);
Update SMTP provider
Update a SMTP provider by its unique ID.
Request
providerId requiredProvider ID.
name Provider name.
host SMTP hosts. Either a single hostname or multiple semicolon-delimited hostnames. You can also specify a different port for each host such as
smtp1.example.com:25;smtp2.example.com
. You can also specify encryption type, for example:tls://smtp1.example.com:587;ssl://smtp2.example.com:465"
. Hosts will be tried in order.port SMTP port.
username Authentication username.
password Authentication password.
encryption Encryption type. Can be 'ssl' or 'tls'
autoTLS Enable SMTP AutoTLS feature.
mailer The value to use for the X-Mailer header.
fromName Sender Name.
fromEmail Sender email address.
replyToName Name set in the Reply To field for the mail. Default value is Sender Name.
replyToEmail Email set in the Reply To field for the mail. Default value is Sender Email.
enabled Set as enabled.
Response
200
PATCH /messaging/providers/smtp/{providerId}
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.updateSmtpProvider(
'<PROVIDER_ID>', // providerId
'<NAME>', // name (optional)
'<HOST>', // host (optional)
1, // port (optional)
'<USERNAME>', // username (optional)
'<PASSWORD>', // password (optional)
sdk.SmtpEncryption.None, // encryption (optional)
false, // autoTLS (optional)
'<MAILER>', // mailer (optional)
'<FROM_NAME>', // fromName (optional)
'email@example.com', // fromEmail (optional)
'<REPLY_TO_NAME>', // replyToName (optional)
'<REPLY_TO_EMAIL>', // replyToEmail (optional)
false // enabled (optional)
);
Create Telesign provider
Create a new Telesign provider.
Request
providerId requiredProvider ID. Choose a custom ID or generate a random ID with
ID.unique()
. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.name requiredProvider name.
from Sender Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.
customerId Telesign customer ID.
apiKey Telesign API key.
enabled Set as enabled.
Response
201
POST /messaging/providers/telesign
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.createTelesignProvider(
'<PROVIDER_ID>', // providerId
'<NAME>', // name
'+12065550100', // from (optional)
'<CUSTOMER_ID>', // customerId (optional)
'<API_KEY>', // apiKey (optional)
false // enabled (optional)
);
Update Telesign provider
Update a Telesign provider by its unique ID.
Request
providerId requiredProvider ID.
name Provider name.
enabled Set as enabled.
customerId Telesign customer ID.
apiKey Telesign API key.
from Sender number.
Response
200
PATCH /messaging/providers/telesign/{providerId}
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.updateTelesignProvider(
'<PROVIDER_ID>', // providerId
'<NAME>', // name (optional)
false, // enabled (optional)
'<CUSTOMER_ID>', // customerId (optional)
'<API_KEY>', // apiKey (optional)
'<FROM>' // from (optional)
);
Create Textmagic provider
Create a new Textmagic provider.
Request
providerId requiredProvider ID. Choose a custom ID or generate a random ID with
ID.unique()
. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.name requiredProvider name.
from Sender Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.
username Textmagic username.
apiKey Textmagic apiKey.
enabled Set as enabled.
Response
201
POST /messaging/providers/textmagic
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.createTextmagicProvider(
'<PROVIDER_ID>', // providerId
'<NAME>', // name
'+12065550100', // from (optional)
'<USERNAME>', // username (optional)
'<API_KEY>', // apiKey (optional)
false // enabled (optional)
);
Update Textmagic provider
Update a Textmagic provider by its unique ID.
Request
providerId requiredProvider ID.
name Provider name.
enabled Set as enabled.
username Textmagic username.
apiKey Textmagic apiKey.
from Sender number.
Response
200
PATCH /messaging/providers/textmagic/{providerId}
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.updateTextmagicProvider(
'<PROVIDER_ID>', // providerId
'<NAME>', // name (optional)
false, // enabled (optional)
'<USERNAME>', // username (optional)
'<API_KEY>', // apiKey (optional)
'<FROM>' // from (optional)
);
Create Twilio provider
Create a new Twilio provider.
Request
providerId requiredProvider ID. Choose a custom ID or generate a random ID with
ID.unique()
. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.name requiredProvider name.
from Sender Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.
accountSid Twilio account secret ID.
authToken Twilio authentication token.
enabled Set as enabled.
Response
201
POST /messaging/providers/twilio
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.createTwilioProvider(
'<PROVIDER_ID>', // providerId
'<NAME>', // name
'+12065550100', // from (optional)
'<ACCOUNT_SID>', // accountSid (optional)
'<AUTH_TOKEN>', // authToken (optional)
false // enabled (optional)
);
Update Twilio provider
Update a Twilio provider by its unique ID.
Request
providerId requiredProvider ID.
name Provider name.
enabled Set as enabled.
accountSid Twilio account secret ID.
authToken Twilio authentication token.
from Sender number.
Response
200
PATCH /messaging/providers/twilio/{providerId}
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.updateTwilioProvider(
'<PROVIDER_ID>', // providerId
'<NAME>', // name (optional)
false, // enabled (optional)
'<ACCOUNT_SID>', // accountSid (optional)
'<AUTH_TOKEN>', // authToken (optional)
'<FROM>' // from (optional)
);
Create Vonage provider
Create a new Vonage provider.
Request
providerId requiredProvider ID. Choose a custom ID or generate a random ID with
ID.unique()
. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.name requiredProvider name.
from Sender Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.
apiKey Vonage API key.
apiSecret Vonage API secret.
enabled Set as enabled.
Response
201
POST /messaging/providers/vonage
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.createVonageProvider(
'<PROVIDER_ID>', // providerId
'<NAME>', // name
'+12065550100', // from (optional)
'<API_KEY>', // apiKey (optional)
'<API_SECRET>', // apiSecret (optional)
false // enabled (optional)
);
Update Vonage provider
Update a Vonage provider by its unique ID.
Request
providerId requiredProvider ID.
name Provider name.
enabled Set as enabled.
apiKey Vonage API key.
apiSecret Vonage API secret.
from Sender number.
Response
200
PATCH /messaging/providers/vonage/{providerId}
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.updateVonageProvider(
'<PROVIDER_ID>', // providerId
'<NAME>', // name (optional)
false, // enabled (optional)
'<API_KEY>', // apiKey (optional)
'<API_SECRET>', // apiSecret (optional)
'<FROM>' // from (optional)
);
GET /messaging/providers/{providerId}
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.getProvider(
'<PROVIDER_ID>' // providerId
);
Delete provider
Delete a provider by its unique ID.
Request
providerId requiredProvider ID.
Response
204
DELETE /messaging/providers/{providerId}
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.deleteProvider(
'<PROVIDER_ID>' // providerId
);
List provider logs
Get the provider activity logs listed by its unique ID.
Request
providerId requiredProvider ID.
queries Array of query strings generated using the Query class provided by the SDK. Learn more about queries. Only supported methods are limit and offset
Response
200
GET /messaging/providers/{providerId}/logs
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.listProviderLogs(
'<PROVIDER_ID>', // providerId
[] // queries (optional)
);
List subscriber logs
Get the subscriber activity logs listed by its unique ID.
Request
subscriberId requiredSubscriber ID.
queries Array of query strings generated using the Query class provided by the SDK. Learn more about queries. Only supported methods are limit and offset
Response
200
GET /messaging/subscribers/{subscriberId}/logs
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.listSubscriberLogs(
'<SUBSCRIBER_ID>', // subscriberId
[] // queries (optional)
);
List topics
Get a list of all topics from the current Appwrite project.
Request
queries Array of query strings generated using the Query class provided by the SDK. Learn more about queries. Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: name, description, emailTotal, smsTotal, pushTotal
search Search term to filter your list results. Max length: 256 chars.
Response
200
GET /messaging/topics
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.listTopics(
[], // queries (optional)
'<SEARCH>' // search (optional)
);
Create topic
Create a new topic.
Request
topicId requiredTopic ID. Choose a custom Topic ID or a new Topic ID.
name requiredTopic Name.
subscribe An array of role strings with subscribe permission. By default all users are granted with any subscribe permission. learn more about roles. Maximum of 100 roles are allowed, each 64 characters long.
Response
201
POST /messaging/topics
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.createTopic(
'<TOPIC_ID>', // topicId
'<NAME>', // name
["any"] // subscribe (optional)
);
GET /messaging/topics/{topicId}
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.getTopic(
'<TOPIC_ID>' // topicId
);
Update topic
Update a topic by its unique ID.
Request
topicId requiredTopic ID.
name Topic Name.
subscribe An array of role strings with subscribe permission. By default all users are granted with any subscribe permission. learn more about roles. Maximum of 100 roles are allowed, each 64 characters long.
Response
200
PATCH /messaging/topics/{topicId}
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.updateTopic(
'<TOPIC_ID>', // topicId
'<NAME>', // name (optional)
["any"] // subscribe (optional)
);
DELETE /messaging/topics/{topicId}
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.deleteTopic(
'<TOPIC_ID>' // topicId
);
List topic logs
Get the topic activity logs listed by its unique ID.
Request
topicId requiredTopic ID.
queries Array of query strings generated using the Query class provided by the SDK. Learn more about queries. Only supported methods are limit and offset
Response
200
GET /messaging/topics/{topicId}/logs
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.listTopicLogs(
'<TOPIC_ID>', // topicId
[] // queries (optional)
);
List subscribers
Get a list of all subscribers from the current Appwrite project.
Request
topicId requiredTopic ID. The topic ID subscribed to.
queries Array of query strings generated using the Query class provided by the SDK. Learn more about queries. Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: name, provider, type, enabled
search Search term to filter your list results. Max length: 256 chars.
Response
200
GET /messaging/topics/{topicId}/subscribers
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.listSubscribers(
'<TOPIC_ID>', // topicId
[], // queries (optional)
'<SEARCH>' // search (optional)
);
Create subscriber
Create a new subscriber.
Request
topicId requiredTopic ID. The topic ID to subscribe to.
subscriberId requiredSubscriber ID. Choose a custom Subscriber ID or a new Subscriber ID.
targetId requiredTarget ID. The target ID to link to the specified Topic ID.
Response
201
POST /messaging/topics/{topicId}/subscribers
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setJWT('<YOUR_JWT>'); // Your secret JSON Web Token
const messaging = new sdk.Messaging(client);
const result = await messaging.createSubscriber(
'<TOPIC_ID>', // topicId
'<SUBSCRIBER_ID>', // subscriberId
'<TARGET_ID>' // targetId
);
Get subscriber
Get a subscriber by its unique ID.
Request
topicId requiredTopic ID. The topic ID subscribed to.
subscriberId requiredSubscriber ID.
Response
200
GET /messaging/topics/{topicId}/subscribers/{subscriberId}
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setKey('<YOUR_API_KEY>'); // Your secret API key
const messaging = new sdk.Messaging(client);
const result = await messaging.getSubscriber(
'<TOPIC_ID>', // topicId
'<SUBSCRIBER_ID>' // subscriberId
);
Delete subscriber
Delete a subscriber by its unique ID.
Request
topicId requiredTopic ID. The topic ID subscribed to.
subscriberId requiredSubscriber ID.
Response
204
DELETE /messaging/topics/{topicId}/subscribers/{subscriberId}
const sdk = require('node-appwrite');
const client = new sdk.Client()
.setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint
.setProject('<YOUR_PROJECT_ID>') // Your project ID
.setJWT('<YOUR_JWT>'); // Your secret JSON Web Token
const messaging = new sdk.Messaging(client);
const result = await messaging.deleteSubscriber(
'<TOPIC_ID>', // topicId
'<SUBSCRIBER_ID>' // subscriberId
);