400 POST
/api/contact-us/
2364ms
overall
0ms
on queries
0
queries
| X-FORWARDED-FOR | 98.97.87.131 |
| X-FORWARDED-PROTO | https |
| HOST | x01-backend.mobischool.mw |
| CONNECTION | close |
| CONTENT-LENGTH | 223 |
| ACCEPT | application/json, text/plain, */* |
| CONTENT-TYPE | application/json |
| SEC-FETCH-SITE | same-site |
| ORIGIN | https://mobischool.mw |
| SEC-FETCH-MODE | cors |
| USER-AGENT | Mozilla/5.0 (iPhone; CPU iPhone OS 18_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.2 Mobile/15E148 Safari/604.1 |
| REFERER | https://mobischool.mw/ |
| SEC-FETCH-DEST | empty |
| ACCEPT-LANGUAGE | en-US,en;q=0.9 |
| PRIORITY | u=3, i |
| ACCEPT-ENCODING | gzip, deflate, br |
{"email": "bones1smith@gmail.com", "content": "I love hearing the praise and worship. Thank you for doing this every Sunday \ud83d\ude4f\ud83c\udfff\ud83d\ude4f\ud83c\udfff", "name": "Alex Smith", "subject": "Kondwandi George Jr Mkandawire", "phone": "4322707003"}
{"content": "I love hearing the praise and worship. Thank you for doing this every Sunday \ud83d\ude4f\ud83c\udfff\ud83d\ude4f\ud83c\udfff", "email": "bones1smith@gmail.com", "name": "Alex Smith", "phone": "4322707003", "subject": "Kondwandi George Jr Mkandawire"}
| CONTENT-TYPE | application/json |
| VARY | Accept |
| ALLOW | POST, OPTIONS |
b'{"data":"Connection unexpectedly closed","message":"something went wrong"}'
{
"data": "Connection unexpectedly closed",
"message": "something went wrong"
}
curl -X POST -H 'content-type: application/json' -d '{"email": "bones1smith@gmail.com", "content": "I love hearing the praise and worship. Thank you for doing this every Sunday \ud83d\ude4f\ud83c\udfff\ud83d\ude4f\ud83c\udfff", "name": "Alex Smith", "subject": "Kondwandi George Jr Mkandawire", "phone": "4322707003"}' https://x01-backend.mobischool.mw/api/contact-us/
from django.test import Client
c = Client()
response = c.post(path='/api/contact-us/',
data={
'email': 'bones1smith@gmail.com',
'content': 'I love hearing the praise and worship. Thank you for doing this every Sunday ππΏππΏ',
'name': 'Alex Smith',
'subject': 'Kondwandi George Jr Mkandawire',
'phone': '4322707003'},
content_type='application/json')