done with bulk sms

This commit is contained in:
lennyaiko
2025-03-27 12:32:08 +01:00
parent 9bde3984a7
commit 61ee37be99
2 changed files with 41 additions and 0 deletions
+17
View File
@@ -59,3 +59,20 @@ def sms():
}
return jsonify(response), 200
@auth_bp.route("/bulk-sms", methods=["POST"])
def bulk_sms():
data = request.json
api_url = f"{current_app.config['API_BASE_URL']}/BulkSMS"
# response = requests.post(api_url, json=data, headers=get_headers())
# return jsonify(response.json()), response.status_code
response = {
"data": "",
"statusCode": 200,
"IsSuccessful": True,
"errorMessage": None,
}
return jsonify(response), 200