roam/daily/2022-04-18.org
2022-04-23 00:39:06 -04:00

178 lines
4.8 KiB
Org Mode

:PROPERTIES:
:ID: 6fa5f014-e5ec-4b20-9267-4610f15c833c
:END:
#+title: 2022-04-18
* Investigating restored deleted subscribers
** Created a new subscriber with a tag
#+begin_src http :pretty :cache yes :eval no-export
GET http://subscriber.service.staging.consul/v1/subscriber?list_id=3854&email=correlr%2Bdeleteme01@aweber.net&fields=tags
#+end_src
#+RESULTS[fb6364e202db62899d507e8bfab2f727b05c996e]:
#+begin_example
{
"isp": null,
"subscriber_id": 1224565879,
"legacy_name": null,
"subscriber_source": null,
"dma_code": null,
"id": 1224565879,
"custom_fields": {
"Favorite Game": null
},
"subscriber_uuid": "0de8f642-d78e-44db-9c7e-6cc53f50acc3",
"city": null,
"verified": 0,
"self": "http://subscriber.service.staging.consul/subscriber/1224565879",
"verification_time": null,
"subscribe_method": "import",
"stop_time": null,
"list_id": 3854,
"latitude": null,
"email": "correlr+deleteme01@aweber.net",
"status": "subscribed",
"tags": [
"deleteme"
],
"last_followup": 1001,
"area_code": null,
"followuptime": null,
"org": null,
"postal": null,
"ip_address": null,
"name": "Correl Roush",
"lead_id": 4496733,
"add_url": null,
"country": null,
"region": null,
"unsubscribe_source": null,
"longitude": null,
"subscribed_at": "2022-04-18T15:21:04.070648-04:00",
"stop_method": null,
"unsubscribe_timestamp": null
}
#+end_example
#+begin_src http :pretty :cache yes :eval no-export
GET http://recipient.service.staging.consul/subscriber/0de8f642-d78e-44db-9c7e-6cc53f50acc3
#+end_src
#+RESULTS[77791090575f541ef5b635141712e1c0cf1b4565]:
#+begin_example
{
"legacy_list_id": 3854,
"signup_ad_tracking": null,
"status": "SOI",
"legacy_subscriber_id": 1224565879,
"name": "Correl Roush",
"email_address": "correlr+deleteme01@aweber.net",
"unsubscribe_source": null,
"recipient": "c0e5f1ca-dae3-4037-b80a-9400f64ac841",
"signup_ip": null,
"notes": null,
"signup_location": null,
"custom_fields": {
"Favorite Game": null
},
"unsubscribe_timestamp": null,
"id": "0de8f642-d78e-44db-9c7e-6cc53f50acc3",
"list": "9f1db623-fbc3-4112-a2f3-ab563e37e131",
"confirmation_ip": null,
"locale": "en-US",
"legacy_lead_id": 4496733,
"display_name": "Correl Roush",
"signup_timestamp": "2022-04-18T19:21:04+00:00",
"signup_url": null,
"signup_source": "Import",
"confirmation_location": null,
"account": "26b49bc2-207e-4a33-b267-5b9e64f2702e",
"confirmation_timestamp": null,
"legacy_account_id": 778
}
#+end_example
** Deleted subscriber
#+begin_src http :pretty :cache yes :eval no-export
GET http://subscriber.service.staging.consul/v1/subscriber?list_id=3854&email=correlr%2Bdeleteme02@aweber.net&fields=tags
#+end_src
#+RESULTS[7d7ff6fd6510a36b406b6a9bd383cee06c0361dd]:
: {
: "error": {
: "status_code": 404,
: "exception": "SubscriberNotFound",
: "message": "Could not find information for the subscriber"
: }
: }
#+begin_src http :pretty :cache yes :eval no-export
GET http://recipient.service.staging.consul/subscriber/5ff28b23-7515-4181-a1c6-0cd86772e959
#+end_src
#+RESULTS[6a3d0fd66afbbe49e9c1433a00a87e62ee4e5e4d]:
: {
: "type": "HTTPError",
: "traceback": null,
: "message": "HTTP 410: Subscriber has been deleted"
: }
** Restored subscriber
#+begin_src http :pretty :cache yes :eval no-export
GET http://subscriber.service.staging.consul/v1/subscriber?list_id=3854&email=correlr%2Bdeleteme03@aweber.net&fields=tags
#+end_src
#+RESULTS[ba42253a27d61ad57b92167534a88df4a97b6c79]:
#+begin_example
{
"isp": null,
"subscriber_id": 1224565877,
"legacy_name": null,
"subscriber_source": null,
"dma_code": null,
"id": 1224565877,
"custom_fields": {
"Favorite Game": null
},
"subscriber_uuid": "aeb485fe-f70d-4c45-9c8b-c0d5896fbac9",
"city": null,
"verified": 0,
"self": "http://subscriber.service.staging.consul/subscriber/1224565877",
"verification_time": null,
"subscribe_method": "import",
"stop_time": null,
"list_id": 3854,
"latitude": null,
"email": "correlr+deleteme03@aweber.net",
"status": "subscribed",
"tags": [
"deleteme"
],
"last_followup": 1001,
"area_code": null,
"followuptime": null,
"org": null,
"postal": null,
"ip_address": null,
"name": "Correl Roush",
"lead_id": 4496732,
"add_url": null,
"country": null,
"region": null,
"unsubscribe_source": null,
"longitude": null,
"subscribed_at": "2022-04-18T15:21:04.071556-04:00",
"stop_method": null,
"unsubscribe_timestamp": null
}
#+end_example
#+begin_src http :pretty :cache yes :eval no-export
GET http://recipient.service.staging.consul/subscriber/aeb485fe-f70d-4c45-9c8b-c0d5896fbac9
#+end_src
#+RESULTS[53eff9fb0aca10b880611138bbd5b74def32ca86]:
: {
: "type": "HTTPError",
: "traceback": null,
: "message": "HTTP 410: Subscriber has been deleted"
: }