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)


547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
# File 'lib/appwrite/services/messaging.rb', line 547

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)


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
96
97
# File 'lib/appwrite/services/messaging.rb', line 55

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)


635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
# File 'lib/appwrite/services/messaging.rb', line 635

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)


717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
# File 'lib/appwrite/services/messaging.rb', line 717

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)


813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
# File 'lib/appwrite/services/messaging.rb', line 813

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)


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
215
216
217
218
# File 'lib/appwrite/services/messaging.rb', line 177

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)


899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
# File 'lib/appwrite/services/messaging.rb', line 899

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)


991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
# File 'lib/appwrite/services/messaging.rb', line 991

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)


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
328
329
330
331
332
333
# File 'lib/appwrite/services/messaging.rb', line 300

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)


1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
# File 'lib/appwrite/services/messaging.rb', line 1089

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)


1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
# File 'lib/appwrite/services/messaging.rb', line 1888

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)


1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
# File 'lib/appwrite/services/messaging.rb', line 1201

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)


1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
# File 'lib/appwrite/services/messaging.rb', line 1285

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)


1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
# File 'lib/appwrite/services/messaging.rb', line 1688

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)


1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
# File 'lib/appwrite/services/messaging.rb', line 1369

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)


1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
# File 'lib/appwrite/services/messaging.rb', line 1453

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:



416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
# File 'lib/appwrite/services/messaging.rb', line 416

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:



1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
# File 'lib/appwrite/services/messaging.rb', line 1562

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:



1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
# File 'lib/appwrite/services/messaging.rb', line 1965

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:



1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
# File 'lib/appwrite/services/messaging.rb', line 1789

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)


386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
# File 'lib/appwrite/services/messaging.rb', line 386

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)


1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
# File 'lib/appwrite/services/messaging.rb', line 1533

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)


1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
# File 'lib/appwrite/services/messaging.rb', line 1930

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)


1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
# File 'lib/appwrite/services/messaging.rb', line 1725

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)


447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
# File 'lib/appwrite/services/messaging.rb', line 447

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
37
# 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)


1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
# File 'lib/appwrite/services/messaging.rb', line 1593

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)


513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
# File 'lib/appwrite/services/messaging.rb', line 513

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)


1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
# File 'lib/appwrite/services/messaging.rb', line 1626

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: targetId, topicId, userId, 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:

  • (SubscriberList)


1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
# File 'lib/appwrite/services/messaging.rb', line 1854

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)


480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
# File 'lib/appwrite/services/messaging.rb', line 480

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)


1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
# File 'lib/appwrite/services/messaging.rb', line 1820

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)


1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
# File 'lib/appwrite/services/messaging.rb', line 1659

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)


595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
# File 'lib/appwrite/services/messaging.rb', line 595

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)


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
150
151
152
# File 'lib/appwrite/services/messaging.rb', line 118

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)


675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
# File 'lib/appwrite/services/messaging.rb', line 675

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)


769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
# File 'lib/appwrite/services/messaging.rb', line 769

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)


857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
# File 'lib/appwrite/services/messaging.rb', line 857

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)


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
283
284
285
286
287
# File 'lib/appwrite/services/messaging.rb', line 246

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)


947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
# File 'lib/appwrite/services/messaging.rb', line 947

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)


1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
# File 'lib/appwrite/services/messaging.rb', line 1039

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)


349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
# File 'lib/appwrite/services/messaging.rb', line 349

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)


1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
# File 'lib/appwrite/services/messaging.rb', line 1153

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)


1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
# File 'lib/appwrite/services/messaging.rb', line 1245

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)


1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
# File 'lib/appwrite/services/messaging.rb', line 1329

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)


1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
# File 'lib/appwrite/services/messaging.rb', line 1757

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)


1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
# File 'lib/appwrite/services/messaging.rb', line 1413

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)


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

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