DmitrMakeev commited on
Commit
ceeb314
·
verified ·
1 Parent(s): 39d802b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +34 -2
app.py CHANGED
@@ -156,7 +156,7 @@ def handle_incoming_request():
156
  # Отправка в лист 1, лист 2 подряд
157
  list_id_1 = 560768
158
  list_id_2 = 560832
159
-
160
  # Лист 1
161
  data_1 = {
162
  "email": email,
@@ -220,7 +220,39 @@ def handle_incoming_request():
220
  # Возвращаем список ответов
221
  return {'responses': [response_1.json(), response_2.json()]}
222
 
223
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
224
 
225
  elif current_day == 1: # Вторник
226
  if current_hour < 19:
 
156
  # Отправка в лист 1, лист 2 подряд
157
  list_id_1 = 560768
158
  list_id_2 = 560832
159
+ list_id_2 = 560833
160
  # Лист 1
161
  data_1 = {
162
  "email": email,
 
220
  # Возвращаем список ответов
221
  return {'responses': [response_1.json(), response_2.json()]}
222
 
223
+ # Лист 3
224
+ data_3 = {
225
+ "email": email,
226
+ "unconfirmed": False,
227
+ "values": [
228
+ {
229
+ "parameter_id": 393198,
230
+ "kind": "string",
231
+ "list_id": list_id_4,
232
+ "title": "phone",
233
+ "value": phone
234
+ },
235
+ {
236
+ "parameter_id": 393197,
237
+ "kind": "string",
238
+ "list_id": list_id_3,
239
+ "title": "name",
240
+ "value": name
241
+ }
242
+ ]
243
+ }
244
+
245
+ # Добавляем заголовок для второго запроса
246
+ headers_3 = {
247
+ 'Authorization': f'Bearer {token}',
248
+ 'Content-Type': 'application/json'
249
+ }
250
+
251
+ # Отправляем второй запрос и сохраняем ответ
252
+ response_3 = requests.post(f"{base_url}/email/lists/{list_id_3}/recipients", json=data_3, headers=headers_3)
253
+
254
+ # Возвращаем список ответов
255
+ return {'responses': [response_1.json(), response_2.json()]}
256
 
257
  elif current_day == 1: # Вторник
258
  if current_hour < 19: