appwrite/docs/examples/1.5.x/server-python/examples/messaging/create-telesign-provider.md

19 lines
577 B
Markdown
Raw Normal View History

2024-02-05 12:40:51 +00:00
from appwrite.client import Client
2025-04-22 13:02:33 +00:00
from appwrite.services.messaging import Messaging
2024-02-05 12:40:51 +00:00
client = Client()
2025-04-22 13:02:33 +00:00
client.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
client.set_project('<YOUR_PROJECT_ID>') # Your project ID
client.set_key('<YOUR_API_KEY>') # Your secret API key
2024-02-05 12:40:51 +00:00
messaging = Messaging(client)
2024-02-21 11:31:50 +00:00
result = messaging.create_telesign_provider(
2024-02-24 11:34:42 +00:00
provider_id = '<PROVIDER_ID>',
name = '<NAME>',
2024-02-21 11:31:50 +00:00
from = '+12065550100', # optional
2024-02-24 11:34:42 +00:00
customer_id = '<CUSTOMER_ID>', # optional
api_key = '<API_KEY>', # optional
2024-02-21 11:31:50 +00:00
enabled = False # optional
)