Class: Appwrite::Messaging

Inherits:
Service
  • Object
show all
Defined in:
lib/appwrite/services/messaging.rb

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ Messaging

Returns a new instance of Messaging.



6
7
8
# File 'lib/appwrite/services/messaging.rb', line 6

def initialize(client)
    @client = client
end

Instance Method Details

#create_apns_provider(provider_id:, name:, auth_key: nil, auth_key_id: nil, team_id: nil, bundle_id: nil, sandbox: nil, enabled: nil) ⇒ Provider

Create a new Apple Push Notification service provider.

Parameters:

  • provider_id (String)

    Provider 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 (String)

    Provider name.

  • auth_key (String) (defaults to: nil)

    APNS authentication key.

  • auth_key_id (String) (defaults to: nil)

    APNS authentication key ID.

  • team_id (String) (defaults to: nil)

    APNS team ID.

  • bundle_id (String) (defaults to: nil)

    APNS bundle ID.

  • []

    sandbox Use APNS sandbox environment.

  • []

    enabled Set as enabled.

Returns:

  • (Provider)


535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
# File 'lib/appwrite/services/messaging.rb', line 535

def create_apns_provider(provider_id:, name:, auth_key: nil, auth_key_id: nil, team_id: nil, bundle_id: nil, sandbox: nil, enabled: nil)
    api_path = '/messaging/providers/apns'

    if provider_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "providerId"')
    end

    if name.nil?
      raise Appwrite::Exception.new('Missing required parameter: "name"')
    end

    api_params = {
        providerId: provider_id,
        name: name,
        authKey: auth_key,
        authKeyId: auth_key_id,
        teamId: team_id,
        bundleId: bundle_id,
        sandbox: sandbox,
        enabled: enabled,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'POST',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Provider
    )
end

#create_email(message_id:, subject:, content:, topics: nil, users: nil, targets: nil, cc: nil, bcc: nil, attachments: nil, draft: nil, html: nil, scheduled_at: nil) ⇒ Message

Create a new email message.

Parameters:

  • message_id (String)

    Message 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 (String)

    Email Subject.

  • content (String)

    Email Content.

  • topics (Array) (defaults to: nil)

    List of Topic IDs.

  • users (Array) (defaults to: nil)

    List of User IDs.

  • targets (Array) (defaults to: nil)

    List of Targets IDs.

  • cc (Array) (defaults to: nil)

    Array of target IDs to be added as CC.

  • bcc (Array) (defaults to: nil)

    Array of target IDs to be added as BCC.

  • attachments (Array) (defaults to: nil)

    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

  • scheduled_at (String) (defaults to: nil)

    Scheduled delivery time for message in [ISO 8601](www.iso.org/iso-8601-date-and-time-format.html) format. DateTime value must be in future.

Returns:

  • (Message)


54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# File 'lib/appwrite/services/messaging.rb', line 54

def create_email(message_id:, subject:, content:, topics: nil, users: nil, targets: nil, cc: nil, bcc: nil, attachments: nil, draft: nil, html: nil, scheduled_at: nil)
    api_path = '/messaging/messages/email'

    if message_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "messageId"')
    end

    if subject.nil?
      raise Appwrite::Exception.new('Missing required parameter: "subject"')
    end

    if content.nil?
      raise Appwrite::Exception.new('Missing required parameter: "content"')
    end

    api_params = {
        messageId: message_id,
        subject: subject,
        content: content,
        topics: topics,
        users: users,
        targets: targets,
        cc: cc,
        bcc: bcc,
        attachments: attachments,
        draft: draft,
        html: html,
        scheduledAt: scheduled_at,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'POST',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Message
    )
end

#create_fcm_provider(provider_id:, name:, service_account_json: nil, enabled: nil) ⇒ Provider

Create a new Firebase Cloud Messaging provider.

Parameters:

  • provider_id (String)

    Provider 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 (String)

    Provider name.

  • service_account_json (Hash) (defaults to: nil)

    FCM service account JSON.

  • []

    enabled Set as enabled.

Returns:

  • (Provider)


621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
# File 'lib/appwrite/services/messaging.rb', line 621

def create_fcm_provider(provider_id:, name:, service_account_json: nil, enabled: nil)
    api_path = '/messaging/providers/fcm'

    if provider_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "providerId"')
    end

    if name.nil?
      raise Appwrite::Exception.new('Missing required parameter: "name"')
    end

    api_params = {
        providerId: provider_id,
        name: name,
        serviceAccountJSON: ,
        enabled: enabled,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'POST',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Provider
    )
end

#create_mailgun_provider(provider_id:, name:, api_key: nil, domain: nil, is_eu_region: nil, from_name: nil, from_email: nil, reply_to_name: nil, reply_to_email: nil, enabled: nil) ⇒ Provider

Create a new Mailgun provider.

Parameters:

  • provider_id (String)

    Provider 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 (String)

    Provider name.

  • api_key (String) (defaults to: nil)

    Mailgun API Key.

  • domain (String) (defaults to: nil)

    Mailgun Domain.

  • []

    is_eu_region Set as EU region.

  • from_name (String) (defaults to: nil)

    Sender Name.

  • from_email (String) (defaults to: nil)

    Sender email address.

  • reply_to_name (String) (defaults to: nil)

    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.

  • reply_to_email (String) (defaults to: nil)

    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.

Returns:

  • (Provider)


701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
# File 'lib/appwrite/services/messaging.rb', line 701

def create_mailgun_provider(provider_id:, name:, api_key: nil, domain: nil, is_eu_region: nil, from_name: nil, from_email: nil, reply_to_name: nil, reply_to_email: nil, enabled: nil)
    api_path = '/messaging/providers/mailgun'

    if provider_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "providerId"')
    end

    if name.nil?
      raise Appwrite::Exception.new('Missing required parameter: "name"')
    end

    api_params = {
        providerId: provider_id,
        name: name,
        apiKey: api_key,
        domain: domain,
        isEuRegion: is_eu_region,
        fromName: from_name,
        fromEmail: from_email,
        replyToName: reply_to_name,
        replyToEmail: reply_to_email,
        enabled: enabled,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'POST',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Provider
    )
end

#create_msg91_provider(provider_id:, name:, template_id: nil, sender_id: nil, auth_key: nil, enabled: nil) ⇒ Provider

Create a new MSG91 provider.

Parameters:

  • provider_id (String)

    Provider 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 (String)

    Provider name.

  • template_id (String) (defaults to: nil)

    Msg91 template ID

  • sender_id (String) (defaults to: nil)

    Msg91 sender ID.

  • auth_key (String) (defaults to: nil)

    Msg91 auth key.

  • []

    enabled Set as enabled.

Returns:

  • (Provider)


795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
# File 'lib/appwrite/services/messaging.rb', line 795

def create_msg91_provider(provider_id:, name:, template_id: nil, sender_id: nil, auth_key: nil, enabled: nil)
    api_path = '/messaging/providers/msg91'

    if provider_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "providerId"')
    end

    if name.nil?
      raise Appwrite::Exception.new('Missing required parameter: "name"')
    end

    api_params = {
        providerId: provider_id,
        name: name,
        templateId: template_id,
        senderId: sender_id,
        authKey: auth_key,
        enabled: enabled,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'POST',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Provider
    )
end

#create_push(message_id:, title: nil, body: nil, topics: nil, users: nil, targets: nil, data: nil, action: nil, image: nil, icon: nil, sound: nil, color: nil, tag: nil, badge: nil, draft: nil, scheduled_at: nil, content_available: nil, critical: nil, priority: nil) ⇒ Message

Create a new push notification.

Parameters:

  • message_id (String)

    Message 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 (String) (defaults to: nil)

    Title for push notification.

  • body (String) (defaults to: nil)

    Body for push notification.

  • topics (Array) (defaults to: nil)

    List of Topic IDs.

  • users (Array) (defaults to: nil)

    List of User IDs.

  • targets (Array) (defaults to: nil)

    List of Targets IDs.

  • data (Hash) (defaults to: nil)

    Additional key-value pair data for push notification.

  • action (String) (defaults to: nil)

    Action for push notification.

  • image (String) (defaults to: nil)

    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 (String) (defaults to: nil)

    Icon for push notification. Available only for Android and Web Platform.

  • sound (String) (defaults to: nil)

    Sound for push notification. Available only for Android and iOS Platform.

  • color (String) (defaults to: nil)

    Color for push notification. Available only for Android Platform.

  • tag (String) (defaults to: nil)

    Tag for push notification. Available only for Android Platform.

  • badge (Integer) (defaults to: nil)

    Badge for push notification. Available only for iOS Platform.

  • []

    draft Is message a draft

  • scheduled_at (String) (defaults to: nil)

    Scheduled delivery time for message in [ISO 8601](www.iso.org/iso-8601-date-and-time-format.html) format. DateTime value must be in future.

  • []

    content_available If set to true, the notification will be delivered in the background. Available only for iOS Platform.

  • []

    critical If set to true, the notification will be marked as critical. This requires the app to have the critical notification entitlement. Available only for iOS Platform.

  • priority (MessagePriority) (defaults to: nil)

    Set the notification priority. “normal” will consider device state and may not deliver notifications immediately. “high” will always attempt to immediately deliver the notification.

Returns:

  • (Message)


174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
# File 'lib/appwrite/services/messaging.rb', line 174

def create_push(message_id:, title: nil, body: nil, topics: nil, users: nil, targets: nil, data: nil, action: nil, image: nil, icon: nil, sound: nil, color: nil, tag: nil, badge: nil, draft: nil, scheduled_at: nil, content_available: nil, critical: nil, priority: nil)
    api_path = '/messaging/messages/push'

    if message_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "messageId"')
    end

    api_params = {
        messageId: message_id,
        title: title,
        body: body,
        topics: topics,
        users: users,
        targets: targets,
        data: data,
        action: action,
        image: image,
        icon: icon,
        sound: sound,
        color: color,
        tag: tag,
        badge: badge,
        draft: draft,
        scheduledAt: scheduled_at,
        contentAvailable: content_available,
        critical: critical,
        priority: priority,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'POST',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Message
    )
end

#create_resend_provider(provider_id:, name:, api_key: nil, from_name: nil, from_email: nil, reply_to_name: nil, reply_to_email: nil, enabled: nil) ⇒ Provider

Create a new Resend provider.

Parameters:

  • provider_id (String)

    Provider 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 (String)

    Provider name.

  • api_key (String) (defaults to: nil)

    Resend API key.

  • from_name (String) (defaults to: nil)

    Sender Name.

  • from_email (String) (defaults to: nil)

    Sender email address.

  • reply_to_name (String) (defaults to: nil)

    Name set in the reply to field for the mail. Default value is sender name.

  • reply_to_email (String) (defaults to: nil)

    Email set in the reply to field for the mail. Default value is sender email.

  • []

    enabled Set as enabled.

Returns:

  • (Provider)


879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
# File 'lib/appwrite/services/messaging.rb', line 879

def create_resend_provider(provider_id:, name:, api_key: nil, from_name: nil, from_email: nil, reply_to_name: nil, reply_to_email: nil, enabled: nil)
    api_path = '/messaging/providers/resend'

    if provider_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "providerId"')
    end

    if name.nil?
      raise Appwrite::Exception.new('Missing required parameter: "name"')
    end

    api_params = {
        providerId: provider_id,
        name: name,
        apiKey: api_key,
        fromName: from_name,
        fromEmail: from_email,
        replyToName: reply_to_name,
        replyToEmail: reply_to_email,
        enabled: enabled,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'POST',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Provider
    )
end

#create_sendgrid_provider(provider_id:, name:, api_key: nil, from_name: nil, from_email: nil, reply_to_name: nil, reply_to_email: nil, enabled: nil) ⇒ Provider

Create a new Sendgrid provider.

Parameters:

  • provider_id (String)

    Provider 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 (String)

    Provider name.

  • api_key (String) (defaults to: nil)

    Sendgrid API key.

  • from_name (String) (defaults to: nil)

    Sender Name.

  • from_email (String) (defaults to: nil)

    Sender email address.

  • reply_to_name (String) (defaults to: nil)

    Name set in the reply to field for the mail. Default value is sender name.

  • reply_to_email (String) (defaults to: nil)

    Email set in the reply to field for the mail. Default value is sender email.

  • []

    enabled Set as enabled.

Returns:

  • (Provider)


969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
# File 'lib/appwrite/services/messaging.rb', line 969

def create_sendgrid_provider(provider_id:, name:, api_key: nil, from_name: nil, from_email: nil, reply_to_name: nil, reply_to_email: nil, enabled: nil)
    api_path = '/messaging/providers/sendgrid'

    if provider_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "providerId"')
    end

    if name.nil?
      raise Appwrite::Exception.new('Missing required parameter: "name"')
    end

    api_params = {
        providerId: provider_id,
        name: name,
        apiKey: api_key,
        fromName: from_name,
        fromEmail: from_email,
        replyToName: reply_to_name,
        replyToEmail: reply_to_email,
        enabled: enabled,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'POST',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Provider
    )
end

#create_sms(message_id:, content:, topics: nil, users: nil, targets: nil, draft: nil, scheduled_at: nil) ⇒ Message

Create a new SMS message.

Parameters:

  • message_id (String)

    Message 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 (String)

    SMS Content.

  • topics (Array) (defaults to: nil)

    List of Topic IDs.

  • users (Array) (defaults to: nil)

    List of User IDs.

  • targets (Array) (defaults to: nil)

    List of Targets IDs.

  • []

    draft Is message a draft

  • scheduled_at (String) (defaults to: nil)

    Scheduled delivery time for message in [ISO 8601](www.iso.org/iso-8601-date-and-time-format.html) format. DateTime value must be in future.

Returns:

  • (Message)


295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
# File 'lib/appwrite/services/messaging.rb', line 295

def create_sms(message_id:, content:, topics: nil, users: nil, targets: nil, draft: nil, scheduled_at: nil)
    api_path = '/messaging/messages/sms'

    if message_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "messageId"')
    end

    if content.nil?
      raise Appwrite::Exception.new('Missing required parameter: "content"')
    end

    api_params = {
        messageId: message_id,
        content: content,
        topics: topics,
        users: users,
        targets: targets,
        draft: draft,
        scheduledAt: scheduled_at,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'POST',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Message
    )
end

#create_smtp_provider(provider_id:, name:, host:, port: nil, username: nil, password: nil, encryption: nil, auto_tls: nil, mailer: nil, from_name: nil, from_email: nil, reply_to_name: nil, reply_to_email: nil, enabled: nil) ⇒ Provider

Create a new SMTP provider.

Parameters:

  • provider_id (String)

    Provider 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 (String)

    Provider name.

  • host (String)

    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 (Integer) (defaults to: nil)

    The default SMTP server port.

  • username (String) (defaults to: nil)

    Authentication username.

  • password (String) (defaults to: nil)

    Authentication password.

  • encryption (SmtpEncryption) (defaults to: nil)

    Encryption type. Can be omitted, ‘ssl’, or ‘tls’

  • []

    auto_tls Enable SMTP AutoTLS feature.

  • mailer (String) (defaults to: nil)

    The value to use for the X-Mailer header.

  • from_name (String) (defaults to: nil)

    Sender Name.

  • from_email (String) (defaults to: nil)

    Sender email address.

  • reply_to_name (String) (defaults to: nil)

    Name set in the reply to field for the mail. Default value is sender name.

  • reply_to_email (String) (defaults to: nil)

    Email set in the reply to field for the mail. Default value is sender email.

  • []

    enabled Set as enabled.

Returns:

  • (Provider)


1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
# File 'lib/appwrite/services/messaging.rb', line 1065

def create_smtp_provider(provider_id:, name:, host:, port: nil, username: nil, password: nil, encryption: nil, auto_tls: nil, mailer: nil, from_name: nil, from_email: nil, reply_to_name: nil, reply_to_email: nil, enabled: nil)
    api_path = '/messaging/providers/smtp'

    if provider_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "providerId"')
    end

    if name.nil?
      raise Appwrite::Exception.new('Missing required parameter: "name"')
    end

    if host.nil?
      raise Appwrite::Exception.new('Missing required parameter: "host"')
    end

    api_params = {
        providerId: provider_id,
        name: name,
        host: host,
        port: port,
        username: username,
        password: password,
        encryption: encryption,
        autoTLS: auto_tls,
        mailer: mailer,
        fromName: from_name,
        fromEmail: from_email,
        replyToName: reply_to_name,
        replyToEmail: reply_to_email,
        enabled: enabled,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'POST',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Provider
    )
end

#create_subscriber(topic_id:, subscriber_id:, target_id:) ⇒ Subscriber

Create a new subscriber.

Parameters:

  • topic_id (String)

    Topic ID. The topic ID to subscribe to.

  • subscriber_id (String)

    Subscriber ID. Choose a custom Subscriber ID or a new Subscriber ID.

  • target_id (String)

    Target ID. The target ID to link to the specified Topic ID.

Returns:

  • (Subscriber)


1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
# File 'lib/appwrite/services/messaging.rb', line 1843

def create_subscriber(topic_id:, subscriber_id:, target_id:)
    api_path = '/messaging/topics/{topicId}/subscribers'
        .gsub('{topicId}', topic_id)

    if topic_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "topicId"')
    end

    if subscriber_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "subscriberId"')
    end

    if target_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "targetId"')
    end

    api_params = {
        subscriberId: subscriber_id,
        targetId: target_id,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'POST',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Subscriber
    )
end

#create_telesign_provider(provider_id:, name:, from: nil, customer_id: nil, api_key: nil, enabled: nil) ⇒ Provider

Create a new Telesign provider.

Parameters:

  • provider_id (String)

    Provider 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 (String)

    Provider name.

  • from (String) (defaults to: nil)

    Sender Phone number. Format this number with a leading ‘+’ and a country code, e.g., +16175551212.

  • customer_id (String) (defaults to: nil)

    Telesign customer ID.

  • api_key (String) (defaults to: nil)

    Telesign API key.

  • []

    enabled Set as enabled.

Returns:

  • (Provider)


1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
# File 'lib/appwrite/services/messaging.rb', line 1175

def create_telesign_provider(provider_id:, name:, from: nil, customer_id: nil, api_key: nil, enabled: nil)
    api_path = '/messaging/providers/telesign'

    if provider_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "providerId"')
    end

    if name.nil?
      raise Appwrite::Exception.new('Missing required parameter: "name"')
    end

    api_params = {
        providerId: provider_id,
        name: name,
        from: from,
        customerId: customer_id,
        apiKey: api_key,
        enabled: enabled,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'POST',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Provider
    )
end

#create_textmagic_provider(provider_id:, name:, from: nil, username: nil, api_key: nil, enabled: nil) ⇒ Provider

Create a new Textmagic provider.

Parameters:

  • provider_id (String)

    Provider 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 (String)

    Provider name.

  • from (String) (defaults to: nil)

    Sender Phone number. Format this number with a leading ‘+’ and a country code, e.g., +16175551212.

  • username (String) (defaults to: nil)

    Textmagic username.

  • api_key (String) (defaults to: nil)

    Textmagic apiKey.

  • []

    enabled Set as enabled.

Returns:

  • (Provider)


1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
# File 'lib/appwrite/services/messaging.rb', line 1257

def create_textmagic_provider(provider_id:, name:, from: nil, username: nil, api_key: nil, enabled: nil)
    api_path = '/messaging/providers/textmagic'

    if provider_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "providerId"')
    end

    if name.nil?
      raise Appwrite::Exception.new('Missing required parameter: "name"')
    end

    api_params = {
        providerId: provider_id,
        name: name,
        from: from,
        username: username,
        apiKey: api_key,
        enabled: enabled,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'POST',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Provider
    )
end

#create_topic(topic_id:, name:, subscribe: nil) ⇒ Topic

Create a new topic.

Parameters:

  • topic_id (String)

    Topic ID. Choose a custom Topic ID or a new Topic ID.

  • name (String)

    Topic Name.

  • subscribe (Array) (defaults to: nil)

    An array of role strings with subscribe permission. By default all users are granted with any subscribe permission. [learn more about roles](appwrite.io/docs/permissions#permission-roles). Maximum of 100 roles are allowed, each 64 characters long.

Returns:

  • (Topic)


1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
# File 'lib/appwrite/services/messaging.rb', line 1649

def create_topic(topic_id:, name:, subscribe: nil)
    api_path = '/messaging/topics'

    if topic_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "topicId"')
    end

    if name.nil?
      raise Appwrite::Exception.new('Missing required parameter: "name"')
    end

    api_params = {
        topicId: topic_id,
        name: name,
        subscribe: subscribe,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'POST',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Topic
    )
end

#create_twilio_provider(provider_id:, name:, from: nil, account_sid: nil, auth_token: nil, enabled: nil) ⇒ Provider

Create a new Twilio provider.

Parameters:

  • provider_id (String)

    Provider 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 (String)

    Provider name.

  • from (String) (defaults to: nil)

    Sender Phone number. Format this number with a leading ‘+’ and a country code, e.g., +16175551212.

  • account_sid (String) (defaults to: nil)

    Twilio account secret ID.

  • auth_token (String) (defaults to: nil)

    Twilio authentication token.

  • []

    enabled Set as enabled.

Returns:

  • (Provider)


1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
# File 'lib/appwrite/services/messaging.rb', line 1339

def create_twilio_provider(provider_id:, name:, from: nil, account_sid: nil, auth_token: nil, enabled: nil)
    api_path = '/messaging/providers/twilio'

    if provider_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "providerId"')
    end

    if name.nil?
      raise Appwrite::Exception.new('Missing required parameter: "name"')
    end

    api_params = {
        providerId: provider_id,
        name: name,
        from: from,
        accountSid: ,
        authToken: auth_token,
        enabled: enabled,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'POST',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Provider
    )
end

#create_vonage_provider(provider_id:, name:, from: nil, api_key: nil, api_secret: nil, enabled: nil) ⇒ Provider

Create a new Vonage provider.

Parameters:

  • provider_id (String)

    Provider 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 (String)

    Provider name.

  • from (String) (defaults to: nil)

    Sender Phone number. Format this number with a leading ‘+’ and a country code, e.g., +16175551212.

  • api_key (String) (defaults to: nil)

    Vonage API key.

  • api_secret (String) (defaults to: nil)

    Vonage API secret.

  • []

    enabled Set as enabled.

Returns:

  • (Provider)


1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
# File 'lib/appwrite/services/messaging.rb', line 1421

def create_vonage_provider(provider_id:, name:, from: nil, api_key: nil, api_secret: nil, enabled: nil)
    api_path = '/messaging/providers/vonage'

    if provider_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "providerId"')
    end

    if name.nil?
      raise Appwrite::Exception.new('Missing required parameter: "name"')
    end

    api_params = {
        providerId: provider_id,
        name: name,
        from: from,
        apiKey: api_key,
        apiSecret: api_secret,
        enabled: enabled,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'POST',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Provider
    )
end

#delete(message_id:) ⇒ Object

Delete a message. If the message is not a draft or scheduled, but has been sent, this will not recall the message.

Parameters:

  • message_id (String)

    Message ID.

Returns:



408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
# File 'lib/appwrite/services/messaging.rb', line 408

def delete(message_id:)
    api_path = '/messaging/messages/{messageId}'
        .gsub('{messageId}', message_id)

    if message_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "messageId"')
    end

    api_params = {
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'DELETE',
        path: api_path,
        headers: api_headers,
        params: api_params,
    )
end

#delete_provider(provider_id:) ⇒ Object

Delete a provider by its unique ID.

Parameters:

  • provider_id (String)

    Provider ID.

Returns:



1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
# File 'lib/appwrite/services/messaging.rb', line 1527

def delete_provider(provider_id:)
    api_path = '/messaging/providers/{providerId}'
        .gsub('{providerId}', provider_id)

    if provider_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "providerId"')
    end

    api_params = {
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'DELETE',
        path: api_path,
        headers: api_headers,
        params: api_params,
    )
end

#delete_subscriber(topic_id:, subscriber_id:) ⇒ Object

Delete a subscriber by its unique ID.

Parameters:

  • topic_id (String)

    Topic ID. The topic ID subscribed to.

  • subscriber_id (String)

    Subscriber ID.

Returns:



1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
# File 'lib/appwrite/services/messaging.rb', line 1918

def delete_subscriber(topic_id:, subscriber_id:)
    api_path = '/messaging/topics/{topicId}/subscribers/{subscriberId}'
        .gsub('{topicId}', topic_id)
        .gsub('{subscriberId}', subscriber_id)

    if topic_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "topicId"')
    end

    if subscriber_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "subscriberId"')
    end

    api_params = {
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'DELETE',
        path: api_path,
        headers: api_headers,
        params: api_params,
    )
end

#delete_topic(topic_id:) ⇒ Object

Delete a topic by its unique ID.

Parameters:

  • topic_id (String)

    Topic ID.

Returns:



1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
# File 'lib/appwrite/services/messaging.rb', line 1747

def delete_topic(topic_id:)
    api_path = '/messaging/topics/{topicId}'
        .gsub('{topicId}', topic_id)

    if topic_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "topicId"')
    end

    api_params = {
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'DELETE',
        path: api_path,
        headers: api_headers,
        params: api_params,
    )
end

#get_message(message_id:) ⇒ Message

Get a message by its unique ID.

Parameters:

  • message_id (String)

    Message ID.

Returns:

  • (Message)


379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
# File 'lib/appwrite/services/messaging.rb', line 379

def get_message(message_id:)
    api_path = '/messaging/messages/{messageId}'
        .gsub('{messageId}', message_id)

    if message_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "messageId"')
    end

    api_params = {
    }
    
    api_headers = {
    }

    @client.call(
        method: 'GET',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Message
    )
end

#get_provider(provider_id:) ⇒ Provider

Get a provider by its unique ID.

Parameters:

  • provider_id (String)

    Provider ID.

Returns:

  • (Provider)


1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
# File 'lib/appwrite/services/messaging.rb', line 1499

def get_provider(provider_id:)
    api_path = '/messaging/providers/{providerId}'
        .gsub('{providerId}', provider_id)

    if provider_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "providerId"')
    end

    api_params = {
    }
    
    api_headers = {
    }

    @client.call(
        method: 'GET',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Provider
    )
end

#get_subscriber(topic_id:, subscriber_id:) ⇒ Subscriber

Get a subscriber by its unique ID.

Parameters:

  • topic_id (String)

    Topic ID. The topic ID subscribed to.

  • subscriber_id (String)

    Subscriber ID.

Returns:

  • (Subscriber)


1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
# File 'lib/appwrite/services/messaging.rb', line 1884

def get_subscriber(topic_id:, subscriber_id:)
    api_path = '/messaging/topics/{topicId}/subscribers/{subscriberId}'
        .gsub('{topicId}', topic_id)
        .gsub('{subscriberId}', subscriber_id)

    if topic_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "topicId"')
    end

    if subscriber_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "subscriberId"')
    end

    api_params = {
    }
    
    api_headers = {
    }

    @client.call(
        method: 'GET',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Subscriber
    )
end

#get_topic(topic_id:) ⇒ Topic

Get a topic by its unique ID.

Parameters:

  • topic_id (String)

    Topic ID.

Returns:

  • (Topic)


1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
# File 'lib/appwrite/services/messaging.rb', line 1685

def get_topic(topic_id:)
    api_path = '/messaging/topics/{topicId}'
        .gsub('{topicId}', topic_id)

    if topic_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "topicId"')
    end

    api_params = {
    }
    
    api_headers = {
    }

    @client.call(
        method: 'GET',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Topic
    )
end

#list_message_logs(message_id:, queries: nil, total: nil) ⇒ LogList

Get the message activity logs listed by its unique ID.

Parameters:

  • message_id (String)

    Message ID.

  • queries (Array) (defaults to: nil)

    Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](appwrite.io/docs/queries). Only supported methods are limit and offset

  • []

    total When set to false, the total count returned will be 0 and will not be calculated.

Returns:

  • (LogList)


438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
# File 'lib/appwrite/services/messaging.rb', line 438

def list_message_logs(message_id:, queries: nil, total: nil)
    api_path = '/messaging/messages/{messageId}/logs'
        .gsub('{messageId}', message_id)

    if message_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "messageId"')
    end

    api_params = {
        queries: queries,
        total: total,
    }
    
    api_headers = {
    }

    @client.call(
        method: 'GET',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::LogList
    )
end

#list_messages(queries: nil, search: nil, total: nil) ⇒ MessageList

Get a list of all messages from the current Appwrite project.

Parameters:

  • queries (Array) (defaults to: nil)

    Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](appwrite.io/docs/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 (String) (defaults to: nil)

    Search term to filter your list results. Max length: 256 chars.

  • []

    total When set to false, the total count returned will be 0 and will not be calculated.

Returns:

  • (MessageList)


17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/appwrite/services/messaging.rb', line 17

def list_messages(queries: nil, search: nil, total: nil)
    api_path = '/messaging/messages'

    api_params = {
        queries: queries,
        search: search,
        total: total,
    }
    
    api_headers = {
    }

    @client.call(
        method: 'GET',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::MessageList
    )
end

#list_provider_logs(provider_id:, queries: nil, total: nil) ⇒ LogList

Get the provider activity logs listed by its unique ID.

Parameters:

  • provider_id (String)

    Provider ID.

  • queries (Array) (defaults to: nil)

    Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](appwrite.io/docs/queries). Only supported methods are limit and offset

  • []

    total When set to false, the total count returned will be 0 and will not be calculated.

Returns:

  • (LogList)


1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
# File 'lib/appwrite/services/messaging.rb', line 1557

def list_provider_logs(provider_id:, queries: nil, total: nil)
    api_path = '/messaging/providers/{providerId}/logs'
        .gsub('{providerId}', provider_id)

    if provider_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "providerId"')
    end

    api_params = {
        queries: queries,
        total: total,
    }
    
    api_headers = {
    }

    @client.call(
        method: 'GET',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::LogList
    )
end

#list_providers(queries: nil, search: nil, total: nil) ⇒ ProviderList

Get a list of all providers from the current Appwrite project.

Parameters:

  • queries (Array) (defaults to: nil)

    Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](appwrite.io/docs/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: name, provider, type, enabled

  • search (String) (defaults to: nil)

    Search term to filter your list results. Max length: 256 chars.

  • []

    total When set to false, the total count returned will be 0 and will not be calculated.

Returns:

  • (ProviderList)


502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
# File 'lib/appwrite/services/messaging.rb', line 502

def list_providers(queries: nil, search: nil, total: nil)
    api_path = '/messaging/providers'

    api_params = {
        queries: queries,
        search: search,
        total: total,
    }
    
    api_headers = {
    }

    @client.call(
        method: 'GET',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::ProviderList
    )
end

#list_subscriber_logs(subscriber_id:, queries: nil, total: nil) ⇒ LogList

Get the subscriber activity logs listed by its unique ID.

Parameters:

  • subscriber_id (String)

    Subscriber ID.

  • queries (Array) (defaults to: nil)

    Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](appwrite.io/docs/queries). Only supported methods are limit and offset

  • []

    total When set to false, the total count returned will be 0 and will not be calculated.

Returns:

  • (LogList)


1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
# File 'lib/appwrite/services/messaging.rb', line 1589

def list_subscriber_logs(subscriber_id:, queries: nil, total: nil)
    api_path = '/messaging/subscribers/{subscriberId}/logs'
        .gsub('{subscriberId}', subscriber_id)

    if subscriber_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "subscriberId"')
    end

    api_params = {
        queries: queries,
        total: total,
    }
    
    api_headers = {
    }

    @client.call(
        method: 'GET',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::LogList
    )
end

#list_subscribers(topic_id:, queries: nil, search: nil, total: nil) ⇒ SubscriberList

Get a list of all subscribers from the current Appwrite project.

Parameters:

  • topic_id (String)

    Topic ID. The topic ID subscribed to.

  • queries (Array) (defaults to: nil)

    Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](appwrite.io/docs/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: name, provider, type, enabled

  • search (String) (defaults to: nil)

    Search term to filter your list results. Max length: 256 chars.

  • []

    total When set to false, the total count returned will be 0 and will not be calculated.

Returns:

  • (SubscriberList)


1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
# File 'lib/appwrite/services/messaging.rb', line 1810

def list_subscribers(topic_id:, queries: nil, search: nil, total: nil)
    api_path = '/messaging/topics/{topicId}/subscribers'
        .gsub('{topicId}', topic_id)

    if topic_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "topicId"')
    end

    api_params = {
        queries: queries,
        search: search,
        total: total,
    }
    
    api_headers = {
    }

    @client.call(
        method: 'GET',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::SubscriberList
    )
end

#list_targets(message_id:, queries: nil, total: nil) ⇒ TargetList

Get a list of the targets associated with a message.

Parameters:

  • message_id (String)

    Message ID.

  • queries (Array) (defaults to: nil)

    Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](appwrite.io/docs/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: userId, providerId, identifier, providerType

  • []

    total When set to false, the total count returned will be 0 and will not be calculated.

Returns:

  • (TargetList)


470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
# File 'lib/appwrite/services/messaging.rb', line 470

def list_targets(message_id:, queries: nil, total: nil)
    api_path = '/messaging/messages/{messageId}/targets'
        .gsub('{messageId}', message_id)

    if message_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "messageId"')
    end

    api_params = {
        queries: queries,
        total: total,
    }
    
    api_headers = {
    }

    @client.call(
        method: 'GET',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::TargetList
    )
end

#list_topic_logs(topic_id:, queries: nil, total: nil) ⇒ LogList

Get the topic activity logs listed by its unique ID.

Parameters:

  • topic_id (String)

    Topic ID.

  • queries (Array) (defaults to: nil)

    Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](appwrite.io/docs/queries). Only supported methods are limit and offset

  • []

    total When set to false, the total count returned will be 0 and will not be calculated.

Returns:

  • (LogList)


1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
# File 'lib/appwrite/services/messaging.rb', line 1777

def list_topic_logs(topic_id:, queries: nil, total: nil)
    api_path = '/messaging/topics/{topicId}/logs'
        .gsub('{topicId}', topic_id)

    if topic_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "topicId"')
    end

    api_params = {
        queries: queries,
        total: total,
    }
    
    api_headers = {
    }

    @client.call(
        method: 'GET',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::LogList
    )
end

#list_topics(queries: nil, search: nil, total: nil) ⇒ TopicList

Get a list of all topics from the current Appwrite project.

Parameters:

  • queries (Array) (defaults to: nil)

    Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](appwrite.io/docs/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: name, description, emailTotal, smsTotal, pushTotal

  • search (String) (defaults to: nil)

    Search term to filter your list results. Max length: 256 chars.

  • []

    total When set to false, the total count returned will be 0 and will not be calculated.

Returns:

  • (TopicList)


1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
# File 'lib/appwrite/services/messaging.rb', line 1621

def list_topics(queries: nil, search: nil, total: nil)
    api_path = '/messaging/topics'

    api_params = {
        queries: queries,
        search: search,
        total: total,
    }
    
    api_headers = {
    }

    @client.call(
        method: 'GET',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::TopicList
    )
end

#update_apns_provider(provider_id:, name: nil, enabled: nil, auth_key: nil, auth_key_id: nil, team_id: nil, bundle_id: nil, sandbox: nil) ⇒ Provider

Update a Apple Push Notification service provider by its unique ID.

Parameters:

  • provider_id (String)

    Provider ID.

  • name (String) (defaults to: nil)

    Provider name.

  • []

    enabled Set as enabled.

  • auth_key (String) (defaults to: nil)

    APNS authentication key.

  • auth_key_id (String) (defaults to: nil)

    APNS authentication key ID.

  • team_id (String) (defaults to: nil)

    APNS team ID.

  • bundle_id (String) (defaults to: nil)

    APNS bundle ID.

  • []

    sandbox Use APNS sandbox environment.

Returns:

  • (Provider)


582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
# File 'lib/appwrite/services/messaging.rb', line 582

def update_apns_provider(provider_id:, name: nil, enabled: nil, auth_key: nil, auth_key_id: nil, team_id: nil, bundle_id: nil, sandbox: nil)
    api_path = '/messaging/providers/apns/{providerId}'
        .gsub('{providerId}', provider_id)

    if provider_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "providerId"')
    end

    api_params = {
        name: name,
        enabled: enabled,
        authKey: auth_key,
        authKeyId: auth_key_id,
        teamId: team_id,
        bundleId: bundle_id,
        sandbox: sandbox,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'PATCH',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Provider
    )
end

#update_email(message_id:, topics: nil, users: nil, targets: nil, subject: nil, content: nil, draft: nil, html: nil, cc: nil, bcc: nil, scheduled_at: nil, attachments: nil) ⇒ Message

Update an email message by its unique ID. This endpoint only works on messages that are in draft status. Messages that are already processing, sent, or failed cannot be updated.

Parameters:

  • message_id (String)

    Message ID.

  • topics (Array) (defaults to: nil)

    List of Topic IDs.

  • users (Array) (defaults to: nil)

    List of User IDs.

  • targets (Array) (defaults to: nil)

    List of Targets IDs.

  • subject (String) (defaults to: nil)

    Email Subject.

  • content (String) (defaults to: nil)

    Email Content.

  • []

    draft Is message a draft

  • []

    html Is content of type HTML

  • cc (Array) (defaults to: nil)

    Array of target IDs to be added as CC.

  • bcc (Array) (defaults to: nil)

    Array of target IDs to be added as BCC.

  • scheduled_at (String) (defaults to: nil)

    Scheduled delivery time for message in [ISO 8601](www.iso.org/iso-8601-date-and-time-format.html) format. DateTime value must be in future.

  • attachments (Array) (defaults to: nil)

    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>.

Returns:

  • (Message)


116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
# File 'lib/appwrite/services/messaging.rb', line 116

def update_email(message_id:, topics: nil, users: nil, targets: nil, subject: nil, content: nil, draft: nil, html: nil, cc: nil, bcc: nil, scheduled_at: nil, attachments: nil)
    api_path = '/messaging/messages/email/{messageId}'
        .gsub('{messageId}', message_id)

    if message_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "messageId"')
    end

    api_params = {
        topics: topics,
        users: users,
        targets: targets,
        subject: subject,
        content: content,
        draft: draft,
        html: html,
        cc: cc,
        bcc: bcc,
        scheduledAt: scheduled_at,
        attachments: attachments,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'PATCH',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Message
    )
end

#update_fcm_provider(provider_id:, name: nil, enabled: nil, service_account_json: nil) ⇒ Provider

Update a Firebase Cloud Messaging provider by its unique ID.

Parameters:

  • provider_id (String)

    Provider ID.

  • name (String) (defaults to: nil)

    Provider name.

  • []

    enabled Set as enabled.

  • service_account_json (Hash) (defaults to: nil)

    FCM service account JSON.

Returns:

  • (Provider)


660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
# File 'lib/appwrite/services/messaging.rb', line 660

def update_fcm_provider(provider_id:, name: nil, enabled: nil, service_account_json: nil)
    api_path = '/messaging/providers/fcm/{providerId}'
        .gsub('{providerId}', provider_id)

    if provider_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "providerId"')
    end

    api_params = {
        name: name,
        enabled: enabled,
        serviceAccountJSON: ,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'PATCH',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Provider
    )
end

#update_mailgun_provider(provider_id:, name: nil, api_key: nil, domain: nil, is_eu_region: nil, enabled: nil, from_name: nil, from_email: nil, reply_to_name: nil, reply_to_email: nil) ⇒ Provider

Update a Mailgun provider by its unique ID.

Parameters:

  • provider_id (String)

    Provider ID.

  • name (String) (defaults to: nil)

    Provider name.

  • api_key (String) (defaults to: nil)

    Mailgun API Key.

  • domain (String) (defaults to: nil)

    Mailgun Domain.

  • []

    is_eu_region Set as EU region.

  • []

    enabled Set as enabled.

  • from_name (String) (defaults to: nil)

    Sender Name.

  • from_email (String) (defaults to: nil)

    Sender email address.

  • reply_to_name (String) (defaults to: nil)

    Name set in the reply to field for the mail. Default value is sender name.

  • reply_to_email (String) (defaults to: nil)

    Email set in the reply to field for the mail. Default value is sender email.

Returns:

  • (Provider)


752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
# File 'lib/appwrite/services/messaging.rb', line 752

def update_mailgun_provider(provider_id:, name: nil, api_key: nil, domain: nil, is_eu_region: nil, enabled: nil, from_name: nil, from_email: nil, reply_to_name: nil, reply_to_email: nil)
    api_path = '/messaging/providers/mailgun/{providerId}'
        .gsub('{providerId}', provider_id)

    if provider_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "providerId"')
    end

    api_params = {
        name: name,
        apiKey: api_key,
        domain: domain,
        isEuRegion: is_eu_region,
        enabled: enabled,
        fromName: from_name,
        fromEmail: from_email,
        replyToName: reply_to_name,
        replyToEmail: reply_to_email,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'PATCH',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Provider
    )
end

#update_msg91_provider(provider_id:, name: nil, enabled: nil, template_id: nil, sender_id: nil, auth_key: nil) ⇒ Provider

Update a MSG91 provider by its unique ID.

Parameters:

  • provider_id (String)

    Provider ID.

  • name (String) (defaults to: nil)

    Provider name.

  • []

    enabled Set as enabled.

  • template_id (String) (defaults to: nil)

    Msg91 template ID.

  • sender_id (String) (defaults to: nil)

    Msg91 sender ID.

  • auth_key (String) (defaults to: nil)

    Msg91 auth key.

Returns:

  • (Provider)


838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
# File 'lib/appwrite/services/messaging.rb', line 838

def update_msg91_provider(provider_id:, name: nil, enabled: nil, template_id: nil, sender_id: nil, auth_key: nil)
    api_path = '/messaging/providers/msg91/{providerId}'
        .gsub('{providerId}', provider_id)

    if provider_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "providerId"')
    end

    api_params = {
        name: name,
        enabled: enabled,
        templateId: template_id,
        senderId: sender_id,
        authKey: auth_key,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'PATCH',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Provider
    )
end

#update_push(message_id:, topics: nil, users: nil, targets: nil, title: nil, body: nil, data: nil, action: nil, image: nil, icon: nil, sound: nil, color: nil, tag: nil, badge: nil, draft: nil, scheduled_at: nil, content_available: nil, critical: nil, priority: nil) ⇒ Message

Update a push notification by its unique ID. This endpoint only works on messages that are in draft status. Messages that are already processing, sent, or failed cannot be updated.

Parameters:

  • message_id (String)

    Message ID.

  • topics (Array) (defaults to: nil)

    List of Topic IDs.

  • users (Array) (defaults to: nil)

    List of User IDs.

  • targets (Array) (defaults to: nil)

    List of Targets IDs.

  • title (String) (defaults to: nil)

    Title for push notification.

  • body (String) (defaults to: nil)

    Body for push notification.

  • data (Hash) (defaults to: nil)

    Additional Data for push notification.

  • action (String) (defaults to: nil)

    Action for push notification.

  • image (String) (defaults to: nil)

    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 (String) (defaults to: nil)

    Icon for push notification. Available only for Android and Web platforms.

  • sound (String) (defaults to: nil)

    Sound for push notification. Available only for Android and iOS platforms.

  • color (String) (defaults to: nil)

    Color for push notification. Available only for Android platforms.

  • tag (String) (defaults to: nil)

    Tag for push notification. Available only for Android platforms.

  • badge (Integer) (defaults to: nil)

    Badge for push notification. Available only for iOS platforms.

  • []

    draft Is message a draft

  • scheduled_at (String) (defaults to: nil)

    Scheduled delivery time for message in [ISO 8601](www.iso.org/iso-8601-date-and-time-format.html) format. DateTime value must be in future.

  • []

    content_available If set to true, the notification will be delivered in the background. Available only for iOS Platform.

  • []

    critical If set to true, the notification will be marked as critical. This requires the app to have the critical notification entitlement. Available only for iOS Platform.

  • priority (MessagePriority) (defaults to: nil)

    Set the notification priority. “normal” will consider device battery state and may send notifications later. “high” will always attempt to immediately deliver the notification.

Returns:

  • (Message)


242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
# File 'lib/appwrite/services/messaging.rb', line 242

def update_push(message_id:, topics: nil, users: nil, targets: nil, title: nil, body: nil, data: nil, action: nil, image: nil, icon: nil, sound: nil, color: nil, tag: nil, badge: nil, draft: nil, scheduled_at: nil, content_available: nil, critical: nil, priority: nil)
    api_path = '/messaging/messages/push/{messageId}'
        .gsub('{messageId}', message_id)

    if message_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "messageId"')
    end

    api_params = {
        topics: topics,
        users: users,
        targets: targets,
        title: title,
        body: body,
        data: data,
        action: action,
        image: image,
        icon: icon,
        sound: sound,
        color: color,
        tag: tag,
        badge: badge,
        draft: draft,
        scheduledAt: scheduled_at,
        contentAvailable: content_available,
        critical: critical,
        priority: priority,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'PATCH',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Message
    )
end

#update_resend_provider(provider_id:, name: nil, enabled: nil, api_key: nil, from_name: nil, from_email: nil, reply_to_name: nil, reply_to_email: nil) ⇒ Provider

Update a Resend provider by its unique ID.

Parameters:

  • provider_id (String)

    Provider ID.

  • name (String) (defaults to: nil)

    Provider name.

  • []

    enabled Set as enabled.

  • api_key (String) (defaults to: nil)

    Resend API key.

  • from_name (String) (defaults to: nil)

    Sender Name.

  • from_email (String) (defaults to: nil)

    Sender email address.

  • reply_to_name (String) (defaults to: nil)

    Name set in the Reply To field for the mail. Default value is Sender Name.

  • reply_to_email (String) (defaults to: nil)

    Email set in the Reply To field for the mail. Default value is Sender Email.

Returns:

  • (Provider)


926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
# File 'lib/appwrite/services/messaging.rb', line 926

def update_resend_provider(provider_id:, name: nil, enabled: nil, api_key: nil, from_name: nil, from_email: nil, reply_to_name: nil, reply_to_email: nil)
    api_path = '/messaging/providers/resend/{providerId}'
        .gsub('{providerId}', provider_id)

    if provider_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "providerId"')
    end

    api_params = {
        name: name,
        enabled: enabled,
        apiKey: api_key,
        fromName: from_name,
        fromEmail: from_email,
        replyToName: reply_to_name,
        replyToEmail: reply_to_email,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'PATCH',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Provider
    )
end

#update_sendgrid_provider(provider_id:, name: nil, enabled: nil, api_key: nil, from_name: nil, from_email: nil, reply_to_name: nil, reply_to_email: nil) ⇒ Provider

Update a Sendgrid provider by its unique ID.

Parameters:

  • provider_id (String)

    Provider ID.

  • name (String) (defaults to: nil)

    Provider name.

  • []

    enabled Set as enabled.

  • api_key (String) (defaults to: nil)

    Sendgrid API key.

  • from_name (String) (defaults to: nil)

    Sender Name.

  • from_email (String) (defaults to: nil)

    Sender email address.

  • reply_to_name (String) (defaults to: nil)

    Name set in the Reply To field for the mail. Default value is Sender Name.

  • reply_to_email (String) (defaults to: nil)

    Email set in the Reply To field for the mail. Default value is Sender Email.

Returns:

  • (Provider)


1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
# File 'lib/appwrite/services/messaging.rb', line 1016

def update_sendgrid_provider(provider_id:, name: nil, enabled: nil, api_key: nil, from_name: nil, from_email: nil, reply_to_name: nil, reply_to_email: nil)
    api_path = '/messaging/providers/sendgrid/{providerId}'
        .gsub('{providerId}', provider_id)

    if provider_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "providerId"')
    end

    api_params = {
        name: name,
        enabled: enabled,
        apiKey: api_key,
        fromName: from_name,
        fromEmail: from_email,
        replyToName: reply_to_name,
        replyToEmail: reply_to_email,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'PATCH',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Provider
    )
end

#update_sms(message_id:, topics: nil, users: nil, targets: nil, content: nil, draft: nil, scheduled_at: nil) ⇒ Message

Update an SMS message by its unique ID. This endpoint only works on messages that are in draft status. Messages that are already processing, sent, or failed cannot be updated.

Parameters:

  • message_id (String)

    Message ID.

  • topics (Array) (defaults to: nil)

    List of Topic IDs.

  • users (Array) (defaults to: nil)

    List of User IDs.

  • targets (Array) (defaults to: nil)

    List of Targets IDs.

  • content (String) (defaults to: nil)

    Email Content.

  • []

    draft Is message a draft

  • scheduled_at (String) (defaults to: nil)

    Scheduled delivery time for message in [ISO 8601](www.iso.org/iso-8601-date-and-time-format.html) format. DateTime value must be in future.

Returns:

  • (Message)


343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
# File 'lib/appwrite/services/messaging.rb', line 343

def update_sms(message_id:, topics: nil, users: nil, targets: nil, content: nil, draft: nil, scheduled_at: nil)
    api_path = '/messaging/messages/sms/{messageId}'
        .gsub('{messageId}', message_id)

    if message_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "messageId"')
    end

    api_params = {
        topics: topics,
        users: users,
        targets: targets,
        content: content,
        draft: draft,
        scheduledAt: scheduled_at,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'PATCH',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Message
    )
end

#update_smtp_provider(provider_id:, name: nil, host: nil, port: nil, username: nil, password: nil, encryption: nil, auto_tls: nil, mailer: nil, from_name: nil, from_email: nil, reply_to_name: nil, reply_to_email: nil, enabled: nil) ⇒ Provider

Update a SMTP provider by its unique ID.

Parameters:

  • provider_id (String)

    Provider ID.

  • name (String) (defaults to: nil)

    Provider name.

  • host (String) (defaults to: nil)

    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 (Integer) (defaults to: nil)

    SMTP port.

  • username (String) (defaults to: nil)

    Authentication username.

  • password (String) (defaults to: nil)

    Authentication password.

  • encryption (SmtpEncryption) (defaults to: nil)

    Encryption type. Can be ‘ssl’ or ‘tls’

  • []

    auto_tls Enable SMTP AutoTLS feature.

  • mailer (String) (defaults to: nil)

    The value to use for the X-Mailer header.

  • from_name (String) (defaults to: nil)

    Sender Name.

  • from_email (String) (defaults to: nil)

    Sender email address.

  • reply_to_name (String) (defaults to: nil)

    Name set in the Reply To field for the mail. Default value is Sender Name.

  • reply_to_email (String) (defaults to: nil)

    Email set in the Reply To field for the mail. Default value is Sender Email.

  • []

    enabled Set as enabled.

Returns:

  • (Provider)


1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
# File 'lib/appwrite/services/messaging.rb', line 1128

def update_smtp_provider(provider_id:, name: nil, host: nil, port: nil, username: nil, password: nil, encryption: nil, auto_tls: nil, mailer: nil, from_name: nil, from_email: nil, reply_to_name: nil, reply_to_email: nil, enabled: nil)
    api_path = '/messaging/providers/smtp/{providerId}'
        .gsub('{providerId}', provider_id)

    if provider_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "providerId"')
    end

    api_params = {
        name: name,
        host: host,
        port: port,
        username: username,
        password: password,
        encryption: encryption,
        autoTLS: auto_tls,
        mailer: mailer,
        fromName: from_name,
        fromEmail: from_email,
        replyToName: reply_to_name,
        replyToEmail: reply_to_email,
        enabled: enabled,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'PATCH',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Provider
    )
end

#update_telesign_provider(provider_id:, name: nil, enabled: nil, customer_id: nil, api_key: nil, from: nil) ⇒ Provider

Update a Telesign provider by its unique ID.

Parameters:

  • provider_id (String)

    Provider ID.

  • name (String) (defaults to: nil)

    Provider name.

  • []

    enabled Set as enabled.

  • customer_id (String) (defaults to: nil)

    Telesign customer ID.

  • api_key (String) (defaults to: nil)

    Telesign API key.

  • from (String) (defaults to: nil)

    Sender number.

Returns:

  • (Provider)


1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
# File 'lib/appwrite/services/messaging.rb', line 1218

def update_telesign_provider(provider_id:, name: nil, enabled: nil, customer_id: nil, api_key: nil, from: nil)
    api_path = '/messaging/providers/telesign/{providerId}'
        .gsub('{providerId}', provider_id)

    if provider_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "providerId"')
    end

    api_params = {
        name: name,
        enabled: enabled,
        customerId: customer_id,
        apiKey: api_key,
        from: from,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'PATCH',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Provider
    )
end

#update_textmagic_provider(provider_id:, name: nil, enabled: nil, username: nil, api_key: nil, from: nil) ⇒ Provider

Update a Textmagic provider by its unique ID.

Parameters:

  • provider_id (String)

    Provider ID.

  • name (String) (defaults to: nil)

    Provider name.

  • []

    enabled Set as enabled.

  • username (String) (defaults to: nil)

    Textmagic username.

  • api_key (String) (defaults to: nil)

    Textmagic apiKey.

  • from (String) (defaults to: nil)

    Sender number.

Returns:

  • (Provider)


1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
# File 'lib/appwrite/services/messaging.rb', line 1300

def update_textmagic_provider(provider_id:, name: nil, enabled: nil, username: nil, api_key: nil, from: nil)
    api_path = '/messaging/providers/textmagic/{providerId}'
        .gsub('{providerId}', provider_id)

    if provider_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "providerId"')
    end

    api_params = {
        name: name,
        enabled: enabled,
        username: username,
        apiKey: api_key,
        from: from,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'PATCH',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Provider
    )
end

#update_topic(topic_id:, name: nil, subscribe: nil) ⇒ Topic

Update a topic by its unique ID.

Parameters:

  • topic_id (String)

    Topic ID.

  • name (String) (defaults to: nil)

    Topic Name.

  • subscribe (Array) (defaults to: nil)

    An array of role strings with subscribe permission. By default all users are granted with any subscribe permission. [learn more about roles](appwrite.io/docs/permissions#permission-roles). Maximum of 100 roles are allowed, each 64 characters long.

Returns:

  • (Topic)


1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
# File 'lib/appwrite/services/messaging.rb', line 1716

def update_topic(topic_id:, name: nil, subscribe: nil)
    api_path = '/messaging/topics/{topicId}'
        .gsub('{topicId}', topic_id)

    if topic_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "topicId"')
    end

    api_params = {
        name: name,
        subscribe: subscribe,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'PATCH',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Topic
    )
end

#update_twilio_provider(provider_id:, name: nil, enabled: nil, account_sid: nil, auth_token: nil, from: nil) ⇒ Provider

Update a Twilio provider by its unique ID.

Parameters:

  • provider_id (String)

    Provider ID.

  • name (String) (defaults to: nil)

    Provider name.

  • []

    enabled Set as enabled.

  • account_sid (String) (defaults to: nil)

    Twilio account secret ID.

  • auth_token (String) (defaults to: nil)

    Twilio authentication token.

  • from (String) (defaults to: nil)

    Sender number.

Returns:

  • (Provider)


1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
# File 'lib/appwrite/services/messaging.rb', line 1382

def update_twilio_provider(provider_id:, name: nil, enabled: nil, account_sid: nil, auth_token: nil, from: nil)
    api_path = '/messaging/providers/twilio/{providerId}'
        .gsub('{providerId}', provider_id)

    if provider_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "providerId"')
    end

    api_params = {
        name: name,
        enabled: enabled,
        accountSid: ,
        authToken: auth_token,
        from: from,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'PATCH',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Provider
    )
end

#update_vonage_provider(provider_id:, name: nil, enabled: nil, api_key: nil, api_secret: nil, from: nil) ⇒ Provider

Update a Vonage provider by its unique ID.

Parameters:

  • provider_id (String)

    Provider ID.

  • name (String) (defaults to: nil)

    Provider name.

  • []

    enabled Set as enabled.

  • api_key (String) (defaults to: nil)

    Vonage API key.

  • api_secret (String) (defaults to: nil)

    Vonage API secret.

  • from (String) (defaults to: nil)

    Sender number.

Returns:

  • (Provider)


1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
# File 'lib/appwrite/services/messaging.rb', line 1464

def update_vonage_provider(provider_id:, name: nil, enabled: nil, api_key: nil, api_secret: nil, from: nil)
    api_path = '/messaging/providers/vonage/{providerId}'
        .gsub('{providerId}', provider_id)

    if provider_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "providerId"')
    end

    api_params = {
        name: name,
        enabled: enabled,
        apiKey: api_key,
        apiSecret: api_secret,
        from: from,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'PATCH',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Provider
    )
end