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