test.py 460 B

12345678910111213141516
  1. import requests
  2. url = "http://127.0.0.1:8001/api/store/get_esign_templates"
  3. # url = "http://120.26.186.130:33333/api/store/get_esign_templates"
  4. body = {
  5. "store_id": 999,
  6. "store_name": "爱丽恩严(大连)商务科技有限公司深圳分公司",
  7. "business_segment": "生活服务",
  8. "merchant_name": "彭少荣",
  9. "contact_phone": "13923864580",
  10. "ord_id": "91440300MADDW7XC4C"
  11. }
  12. res = requests.post(url, json=body)
  13. print(res.text)