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

4.8 KiB

2022-04-18

Investigating restored deleted subscribers

Created a new subscriber with a tag

  GET http://subscriber.service.staging.consul/v1/subscriber?list_id=3854&email=correlr%2Bdeleteme01@aweber.net&fields=tags
{
  "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
}
  GET http://recipient.service.staging.consul/subscriber/0de8f642-d78e-44db-9c7e-6cc53f50acc3
{
  "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
}

Deleted subscriber

  GET http://subscriber.service.staging.consul/v1/subscriber?list_id=3854&email=correlr%2Bdeleteme02@aweber.net&fields=tags
{
  "error": {
    "status_code": 404,
    "exception": "SubscriberNotFound",
    "message": "Could not find information for the subscriber"
  }
}
  GET http://recipient.service.staging.consul/subscriber/5ff28b23-7515-4181-a1c6-0cd86772e959
{
  "type": "HTTPError",
  "traceback": null,
  "message": "HTTP 410: Subscriber has been deleted"
}

Restored subscriber

  GET http://subscriber.service.staging.consul/v1/subscriber?list_id=3854&email=correlr%2Bdeleteme03@aweber.net&fields=tags
{
  "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
}
  GET http://recipient.service.staging.consul/subscriber/aeb485fe-f70d-4c45-9c8b-c0d5896fbac9
{
  "type": "HTTPError",
  "traceback": null,
  "message": "HTTP 410: Subscriber has been deleted"
}