Incoming Phone and Fax Records: Sept 1-Oct 5 2024
Submitted | Oct. 15, 2024 |
MuckRock users can file, duplicate, track, and share public records requests like this one. Learn more.
Communications
From: bca0cfff68b6fb1c46a04f0764ba6e68f0449f7ea5b01db3e53a96b1c1cba194
To Whom It May Concern:
Pursuant to the The Missouri Sunshine Law, I hereby request the following records:
Inbound phone and fax records for (573) 751-3222 and (573) 751-1495, respectively, for the date range indicated below.
Start Date: 12:00 AM September 1, 2024
End Date: 11:59 PM October 5, 2024
The information requested from these records are the following:
(1) A timestamp indicating the time and date of the inbound call
(2) An indication of how the call or fax was handled, with the following categorizations. Additional categorizations or details are acceptable to include.
Phone Call:
(2a) Answered by a live person.
(2b) Directed to voicemail with a message successfully recorded.
(2c) Directed to voicemail with no message recorded due to a full voice mailbox.
(2d) Directed to voicemail, but caller hung up or opted not to record a message.
(2e) Directed to an extension and answered by a live person.
(2f) Directed to an extension and answered by voicemail with a message successfully recorded.
(2g) Directed to an extension, answered by voicemail, but no message recorded due to a full voicemail box.
(2h) Directed to an extension, answered by voicemail, but caller hung up or opted not to record a message.
(2i) Directed to and answered by a live operator.
(2j) Directed to an operator, but not answered.
(2k) Call not answered by live person nor voicemail.
(2l) Other: Please specify
Fax:
(2m) Received and job printed successfully at the time of reception.
(2n) Received but job not printed due to empty paper source.
(2o) Received but job not printed due to other reason - please specify.
(2p) Call not answered.
(2q) Other: Please specify
(3) A privacy-preserving, unique identifier derived from the caller's telephone number.
This identifier shall establish a 1:1 mapping to the source phone number and remain the same for all instances of the source phone number appearing in the inbound call log.
A clarification: the requester is specifically NOT requesting a new record to be created, but rather, to merely provide the existing information in a different representation. The suggested way to achieve this is to use an HMAC cryptographic operation. The Python (https://www.python.org) script provided below demonstrates how to represent phone numbers as privacy-preserving unique identifiers via HMAC-SHA256.
To preserve the privacy of callers, the requester specifically requests that if HMAC or a similar cryptographic scheme is used to satisfy this request, that the secret key is NOT disclosed in any response or public records, to the extent permitted by law.
Example Python Script:
~~~
#!/usr/bin/env python3
#
# An example showing how to represent a log of phone numbers as
# privacy-preserving unique identifiers using HMAC-SHA256.
#
# Below is the expected example output:
#
# Timestamp: 2024-09-07 11:07:55, Status: 2b, Source: 37946e67b0fb1a193350c3f6f228f08df6e1078606a9617578d05868d9c203cc
# Timestamp: 2024-09-10 23:59:12, Status: 2c, Source: 4f6dde6cf83ca4311ad66c8f97616682bd08848a383e7b23b032d602e3d7105d
# Timestamp: 2024-09-15 13:00:35, Status: 2a, Source: ea558425ccced1be9f084efd9df45ae39343e138494a611a0c28877a9bb86f43
# Timestamp: 2024-09-15 20:32:07, Status: 2g, Source: 37946e67b0fb1a193350c3f6f228f08df6e1078606a9617578d05868d9c203cc
#
################################################################################
import hashlib
import hmac
# An example list containing the raw requested information
data = [
{'ts': '2024-09-07 11:07:55', 'status': '2b', 'caller': '555-123-4567'},
{'ts': '2024-09-10 23:59:12', 'status': '2c', 'caller': '555-555-0001'},
{'ts': '2024-09-15 13:00:35', 'status': '2a', 'caller': '555-555-9876'},
{'ts': '2024-09-15 20:32:07', 'status': '2g', 'caller': '555-123-4567'},
]
# IMPORTANT: Replace this value with a secret string of random words
# and DO NOT disclose this secret.
secret = "willow dog forbearance hiccup nonsense ant index".encode('UTF-8')
# Iterate over the raw data record and print it in the requested representation
for entry in data:
source = entry['caller'].encode('UTF-8')
privacy_id = hmac.digest(secret, source, hashlib.sha256).hex()
output = 'Timestamp: {:s}, Status: {:s}, Source: {:s}'
print(output.format(entry['ts'], entry['status'], privacy_id))
~~~
The requester of this information is willing to provide pro bono technical education and assistance with respect to this request, in a manner consistent with any specified IT restrictions and limitations.
The requested documents will be made available to the general public, and this request is not being made for commercial purposes.
In the event that there are fees, I would be grateful if you would inform me of the total charges in advance of fulfilling my request. I would prefer the request filled electronically, by e-mail attachment if available or CD-ROM if not.
Thank you in advance for your anticipated cooperation in this matter. I look forward to receiving your response to this request within 3 business days, as the statute requires.
Sincerely,
bca0cfff68b6fb1c46a04f0764ba6e68f0449f7ea5b01db3e53a96b1c1cba194
From: Muckrock Staff
To Whom It May Concern:
I wanted to follow up on the following The Missouri Sunshine Law request, copied below, and originally submitted on Oct. 23, 2024. Please let me know when I can expect to receive a response.
Thanks for your help, and let me know if further clarification is needed.
From: Muckrock Staff
To Whom It May Concern:
I wanted to follow up on the following The Missouri Sunshine Law request, copied below, and originally submitted on Oct. 23, 2024. Please let me know when I can expect to receive a response.
Thanks for your help, and let me know if further clarification is needed.
From: Muckrock Staff
To Whom It May Concern:
I wanted to follow up on the following The Missouri Sunshine Law request, copied below, and originally submitted on Oct. 23, 2024. Please let me know when I can expect to receive a response.
Thanks for your help, and let me know if further clarification is needed.
From: Muckrock Staff
To Whom It May Concern:
I wanted to follow up on the following The Missouri Sunshine Law request, copied below, and originally submitted on Oct. 23, 2024. Please let me know when I can expect to receive a response.
Thanks for your help, and let me know if further clarification is needed.
From: Muckrock Staff
To Whom It May Concern:
I wanted to follow up on the following The Missouri Sunshine Law request, copied below, and originally submitted on Oct. 23, 2024. Please let me know when I can expect to receive a response.
Thanks for your help, and let me know if further clarification is needed.
From: Muckrock Staff
To Whom It May Concern:
I wanted to follow up on the following The Missouri Sunshine Law request, copied below, and originally submitted on Oct. 23, 2024. Please let me know when I can expect to receive a response.
Thanks for your help, and let me know if further clarification is needed.
From: Muckrock Staff
To Whom It May Concern:
I wanted to follow up on the following The Missouri Sunshine Law request, copied below, and originally submitted on Oct. 23, 2024. Please let me know when I can expect to receive a response.
Thanks for your help, and let me know if further clarification is needed.
From: Muckrock Staff
To Whom It May Concern:
I wanted to follow up on the following The Missouri Sunshine Law request, copied below, and originally submitted on Oct. 23, 2024. Please let me know when I can expect to receive a response.
Thanks for your help, and let me know if further clarification is needed.
From: Muckrock Staff
To Whom It May Concern:
I wanted to follow up on the following The Missouri Sunshine Law request, copied below, and originally submitted on Oct. 23, 2024. Please let me know when I can expect to receive a response.
Thanks for your help, and let me know if further clarification is needed.
From: Muckrock Staff
To Whom It May Concern:
I wanted to follow up on the following The Missouri Sunshine Law request, copied below, and originally submitted on Oct. 23, 2024. Please let me know when I can expect to receive a response.
Thanks for your help, and let me know if further clarification is needed.
From: Office of Governor Michael L. Parson
None