We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3780df8 commit 80cb258Copy full SHA for 80cb258
messages/inbound-message.py
@@ -4,7 +4,7 @@
4
5
app = Flask(__name__)
6
7
-@app.route("/webhooks/inbound-sms", methods=['POST'])
+@app.route("/webhooks/inbound-message", methods=['POST'])
8
def inbound_message():
9
data = request.get_json()
10
pprint(data)
messages/delivery-receipt.py renamed to messages/message-status.py
@@ -4,8 +4,8 @@
-@app.route("/webhooks/delivery-receipt", methods=['POST'])
-def delivery_receipt():
+@app.route("/webhooks/message-status", methods=['POST'])
+def message_status():
11
return "200"
0 commit comments