Finding PII for CCPA requests

Privacy and ownership of personal data is a huge topic in the modern world. As a partner in the ecosystem of tools that may used day to day, Streem is dedicated to upholding these values and ensuring that privacy is of utmost importance. As with all companies, we are at the beginning of our journey and will improve our tools and methods iteratively as we learn more.

Please work with our account management team so we can understand the Team members or resources which will request removal on behalf of your company.

  • In these conversations, we need to collect an email address which can be used to forward PII requests to your team in the event that a Customer bypasses your PII process and attempts to come directly to Streem.
  • We will route these Customers to you without actioning their request.

Important considerations as you begin dev:

  • Streem has no infrastructure to validate that a Personally Identifying Information (PII) requestor is the individual they say that they are. Instead, Streem trusts you team as a customer and partner will manage your access to this data with the same care and respect that we do. We will provide the data you request as we would any other API request and it is the responsibility of you and your team to ensure that data does not get presented to an end user who does not have the right to access.

  • Streem's compliance with CCPA is currently limited to API requests. This means that a development team is needed in order to create the service request and monitor a webhook for a resulting data set.

  • Streem's response manditorily requires a webhook. The data for a single account may be fast and close to instantaneous, but larger requests that span several teams may exceed the common limit of 30 seconds. To simplify, we only supply responses via Webhook to ensure payload response will always be complete and dependable

  • Streem supplies back all data contained within the call records for a response. We do not filter the response as your individual legal requirements may ask for you to respond with more information than the law explicitly requires.

  • Streem will only supply back call log data that you have the right to. If additional data exists in our data but associated with another Vendor, we will not disclose this data to you as it will contain sensitive PII details that we will continue to protect. The exception to this is when you are a parent org and ask us to search through your sub-companies (child orgs).

Requesting data via API

Review our API functions and Plan your input.
https://developer.streem.com/reference#createpiirequest

Streem has limited scenarios where PII is accessible externally and attributable to a unique person. These Scenarios are exclusively tied to the sending of Streem call invitations via SMS/Text message. any other form of invitation (hyperlink, direct invitation code) are attributed anonymising external_user_ids.

Because SMS is a method of communication, the Phone number is used to identify the user,
An external_user_id may be stored as an element in your crm, but can also simply be recreated programmatically if you see fit.

Schema:
Plus sign + country code + phone number

Example
United States: +15035551234
United Kingdom/UK: +447911123456

POST /v1/companies/{company_sid}/pii-requests

RequestBody:
{
	"external_user_id": "", // external id of user in company or any of its 
subcompanies
	"includeSubCompanies": true, // boolean whether the request should cascade
to subcompanies
	"customIdentifier": "", // arbitrary string. could be JSON-formatted
	"webhookURL": "" // url to post async response to
}


ResponseBody:
{
	"piiRequestSid": "", // string, Streems internal ID of this request
	"customIdentifier": "", // same as above
}

Webhook Authentication

To retain functionality with all forms of Auth use cases, the Streem PII webhooks are functional with and without additional delivery Auth.

It is up to your organization to ensure that the package of PII data is delivered to a resource which is capable of securing and retaining privacy of the data you requested.

In the request for PII data, you will find there are additional fields
oauth_url
oauth_url_properties

"oauth_url_properties": {
          "grant_type": "",
          "client_secret": "",
          "client_id": ""
     },
     "oauth_url": ""

Utilizing these during the data request, you can tell Streem the location of your Oauth server and the credentials needed to start the three legged auth. Streem will receive back an authorized token which we will use in the response to your Webhook with the PII Data package.

Streem will not store auth data between calls, so any Oauth flow will require that you supply auth data in each request.

Data Response

Your webhook will receive a notification and payload for the request as soon as processing is complete. This response will be formed as a gzip data payload.
For dev teams using off the shelf free webhook tools for testing (pipedream, and the like), please note that your test payloads may exceed the max size of responses without requiring a subscription.

Structure of the payload will be nested with information broken out to identify the individual organizations searched and the call logs that were returned.

For orgs using sub-companies, it should be considered INCREDIBLY COMMON that a phone number results in a zero result for call logs. if you have a partner network of 25 sub-companies and only one of them has interacted with your consumer, you would have 24 empty results.

{
		"lookupPiiCompanyResults": [
				{
		    "companySid": "co_123459ased32", 
		    "piiResults": [
				    {
				        "callLogEntry": {...},
				        "artifacts": [
				            {...}
				        ]
				    }
		    ]
				}
		]
}

Below is a Full example of the Streem payload that is sent to the webhook.

The majority of data that PII review should focus on will be contained with the following elements

  • call_log_entry // Contains the bulk of all data needed for compliance.

  • start_time & end_time // Identifies when the call occured.

  • participants // Indicates the Expert and Customer who joined the call. In a scenario where no Expert answered, the Expert would be omitted from the participants. Customer phone number, name and other data is stored here. See also Invitations
    NOTE: Be careful not to disclose PII for your Expert in your presentation of data. Their privacy is equally important.

  • artifact_counts // Can help you analyze what data should be presented.

  • share_url // This is important. it indicates a URL through which another individual can gain access to the call record. This share url may have been created for internal use or for sharing with the consumer.

  • reference_id // Typically this is a machine generated ID like a ticket number, but in some cases an Agent or Expert may include PII in this field.

  • notes // This field is typically used for notes about the call, measurements or other pertinent data. This is an unmoderated field and may contain PII or sensitive information about YOUR company. please disclose with discretion.

  • gps_position // Data that was collected during the call about coordinates and address. This data can only be collected during the call with programmatic acceptance by the Customer.

  • invitations // Like participants, this data identifies participants in the process. This indicates the expert who placed the invitation and the consumer who it was sent to. Invitation and participant data should be treated as PII with equal importance.

  • detections marked as "DETECTION_TYPE_FULL_TEXT" // These contain a full OCR string of all on screen text interpreted during the call. This data may include Model and Serial Number data.

{
  "co_somecompanyId": [
    { // PII entry object 
      "call_log_entry": {
        "room_sid": "rm_5TkLLUBj0BdZZELEgkg123SE0",
        "start_time": "2021-05-14T00:00:36.053868Z",
        "end_time": "2021-05-14T00:01:30.256Z",
        "participants": [
          {
            "user_sid": "usr_5EU6ZQy3AgRy7MiAVFR1233Uy",
            "external_user_id": "+15031234567",
            "name": "Trey Thomas",
            "avatar_url": null,
            "phone": "+15031234567",
            "is_expert": false
          },
          {
            "user_sid": "usr_63i8zwFPmJKubB4cAvm234COs",
            "external_user_id": "nlYD5nCRlHXvx4oB0n7QjYg85abcOI3",
            "name": "Trey T.",
            "avatar_url": "https://firebasestorage.googleapis.com/v0/b/company.appspot.com/o/uploads%2F08c12c1c-4fca-43cd-8c40-d2c1fa3e5b95.jpg?alt=media&token=e422723b-7f31-43a3-816d-3fa756d99123458f",
            "phone": null,
            "is_expert": true
          }
        ],
        "missed": false,
        "onsite": false,
        "artifact_counts": {
          "gps_position": 1,
          "mesh": 0,
          "recording": 0,
          "recording_track": 5,
          "streemshot": 1,
          "transcription": 0,
          "sceneshot": 0,
          "layout_estimation": 0
        },
        "share_url": null,
        "reference_id": null,
        "created_by_user_sid": "usr_5EU6ZQy3AgRy7MiAVFR1233Uy",
        "note": {
          "sid": "nt_d7COCy6oLh9zehsleVKZ7",
          "created_by_user_sid": "usr_63i8zwFPmJKubB4cAvm234COs",
          "created_at": "2021-05-14T00:03:07.183931Z",
          "scope": "SCOPE_ROOM",
          "scope_sid": "rm_5TkLLUBj0BdZZELEgkg123SE0",
          "last_updated_by_user_sid": "usr_63i8zwFPmJKubB4cAvm234COs",
          "last_updated_at": "2021-05-14T00:03:28.904Z",
          "text": "I am a call detail note"
        },
        "latest_gps_position": {
          "sourced_from_user_sid": "usr_5EU6ZQy3AgRy7MiAVFR1233Uy",
          "sourced_from_device_sid": "dvc_3CDIi6SW9qp2FQlbtlcvX111",
          "client_created_at": "2021-05-14T00:01:04.818Z",
          "latitude_degrees": 41.53357803177614,
          "longitude_degrees": -123.68505349728392,
          "accuracy_meters": 65.0,
          "formatted_address": "2100–2198 NW Some St, Portland OR 97209, United States"
        },
        "invitations": [
          {
            "from_user": {
              "user_sid": "usr_5EU6ZQy3AgRy7MiAVFR1233Uy",
	            "external_user_id": "+15031234567",
	            "name": "Trey Thomas",
	            "avatar_url": null,
	            "phone": "+15031234567",
	            "is_expert": false
	          },

            "to_user": {
              "user_sid": "usr_63i8zwFPmJKubB4cAvm234COs",
              "external_user_id": "nlYD5nCRlHXvx4oB0n7QjYg85abcOI3",
              "name": "Trey T.",
              "avatar_url": "https://firebasestorage.googleapis.com/v0/b/company.appspot.com/o/uploads%2F08c12c1c-4fca-43cd-8c40-d2c1fa3e5b95.jpg?alt=media&token=e422723b-7f31-43a3-816d-3fa756d99123458f",
              "phone": null,
              "is_expert": true
            }
          }
        ]
      },
      "artifacts": [
        {
          "sid": "rec_5UBzxdEhSyw3P4dkvuMOAn",
          "room_sid": "rm_5TkLLUBj0BdZZELEgkg123SE0",
          "type": "RECORDING",
          "deleted": false,
          "scheduled_for_deletion_at": null,
          "deleted_at": null,
          "recording": {
            "bucket": "streem-prod-us-artifacts",
            "filename": "room.mp4",
            "storage_url": "s3://streem-prod-us-artifacts/recordings/streem/rm_5TkLLUBj0BdZZELEgkg123SE0/rec_5UBzxdEhSyw3P4dkvuMOAn/room.mp4",
            "status": "STATUS_REQUESTED",
            "requested_at": "2021-05-14T00:00:46.421Z",
            "started_transferring_at": null,
            "errored_at": null,
            "fulfilled_at": null,
            "created_at": "2021-05-14T00:00:46.419Z",
            "url": null,
            "recording_source": "SOURCE_TWILIO"
          }
        },
        {
          "sid": "tr_17DnUnHTpmLmLHXvO77QwE",
          "room_sid": "rm_5TkLLUBj0BdZZELEgkg123SE0",
          "type": "RECORDING_TRACK",
          "deleted": false,
          "scheduled_for_deletion_at": null,
          "deleted_at": null,
          "recording_track": {
            "bucket": "streem-prod-us-artifacts",
            "filename": "RTefed716ade42cb438b51d372c2a8cc5d.mkv",
            "user_sid": "usr_5EU6ZQy3AgRy7MiAVFR1233Uy",
            "track_type": "mkv",
            "codec": "h264",
            "storage_url": "s3://streem-prod-us-artifacts/recordingTracks/streem/rm_5TkLLUBj0BdZZELEgkg123SE0/tr_17DnUnHTpmLmLHXvO77QwE/RTefed716ade42cb438b51d372c2a8cc5d.mkv",
            "status": "STATUS_FULFILLED",
            "requested_at": null,
            "started_recording_at": "2021-05-14T00:00:46.470Z",
            "finished_recording_at": "2021-05-14T00:01:32.650Z",
            "started_transferring_at": "2021-05-14T00:01:32.686Z",
            "errored_at": null,
            "fulfilled_at": "2021-05-14T00:01:35.831Z",
            "url": "https://streem-prod-us-artifacts.s3.us-west-2.amazonaws.com/recordingTracks/streem/rm_5TkLLUBj0BdZZELEgkg123SE0/tr_17DnUnHTpmLmLHXvO77QwE/RTefed716ade42cb438b51d372c2a8cc5d.mkv?X-Amz-Security-Token=IQoJb3JpZ2luX2VjEFUaCXVzLXdlc3QtMiJHMEUCIQCxXgVxSb5U7fRy9OEd5VzcKiAELS0U58hA%2BsU%2BFgbyyQIgSAtBbxXq4c%2BrIMz2N9f6CtzR1vIruJx2LbKi2t4nUeEq%2FgMI3v%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARACGgwyNjA0NjIzMjE3MTYiDOB8KckhB1VZJq%2BXrSrSA%2F1O5QnTFcAoXbQqTZUZ1Jo%2FLhWlmNXoexXrIZIbXdDB5FG1GFuXOdyAL9Lx2oiBqj2f1g%2BkizoN0lKrAb7g%2F%2BN%2BWq3TSeA1PultKELJs%2BJFXT8vQHoFyIgaR9NjdT4mEFePgQlzhwlNBSeONLW6UdqI633TC72SZqTAVIZyVDt9GCMK22iPCa6n97bs89aVSLnt6bPWbqWRWVzDjKBrXbPhfgAaUb6zsd4qEZzkyhiiiKSAvo2LRTPqlpshYMdkluooSI0EoNhkkUsClRPoGiW773vzgg%2B5W3bMdTSnIM4oQ0Eu%2FvTIBPWNlIQw7aoUSMhu7ZAHE30%2BsjpbkOZTJyv8bQ95QWnNMq46aVSsR45VQPSU4S3mzMRg%2B2hNm1SX5cQe3GiIZHaSIHZ1c5fNkaGs453Q6iVFVCO9oUG2SOtLTv13HYvVmhmORLNZzkONHIZdQQg8mYoelYfvxfoer0QFYGtaacUPuCMNbBcMysaEfglFlRVlpgVAcwEmwRuqscT%2F1QGGkG1MmAKGM7LVcwsbLhbvgcXKQ2QbDAmQoL1pVRZazh%2B%2BcrzkmCEB6w9ovGWhyQUpvlwvec1VFayn4E4rbzttpzMVvqCEQdT9qdAi04EwgK72hAY6pQGLhC9CI4Ek2sn2d5TBLlMJEVglZ2XV2hzRXB8nYcAm3RVWxZbsIq4Ri8Dt9Em4g32sutkYPA8N8qFh7PJLBYyq4A61wbTJxJ2MHeauW6I1BMmvuJoitM1SFcxSca3EP%2BKwl8z8EvuMUIJnTbves0pEHn8rI6VqEgE4RCR4OE26G8JvD0smuG2rzMjTv8ECHzTjsMVq9EeYXlUY5sL7seoooXpuoXI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20210514T000354Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Credential=ASIATZJGDUA2DBYOONOC%2F20210514%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Signature=23d1a5c2f6542699fa20828e5fe4bc0b3d4c3651f6ad33c5af828c2c48e46b43",
            "created_at": "2021-05-14T00:00:46.470Z",
            "recording_source": "SOURCE_TWILIO",
            "source_recording_track_sid": null
          }
        },
        {
          "sid": "tr_4tbTfS1SRMbRGdJ8fLDoz4",
          "room_sid": "rm_5TkLLUBj0BdZZELEgkg123SE0",
          "type": "RECORDING_TRACK",
          "deleted": false,
          "scheduled_for_deletion_at": null,
          "deleted_at": null,
          "recording_track": {
            "bucket": "streem-prod-us-artifacts",
            "filename": "RT245c3ca82856e8c734ef5a2ba5d43d5d.mka",
            "user_sid": "usr_5EU6ZQy3AgRy7MiAVFR1233Uy",
            "track_type": "mka",
            "codec": "opus",
            "storage_url": "s3://streem-prod-us-artifacts/recordingTracks/streem/rm_5TkLLUBj0BdZZELEgkg123SE0/tr_4tbTfS1SRMbRGdJ8fLDoz4/RT245c3ca82856e8c734ef5a2ba5d43d5d.mka",
            "status": "STATUS_FULFILLED",
            "requested_at": null,
            "started_recording_at": "2021-05-14T00:00:48.178Z",
            "finished_recording_at": "2021-05-14T00:01:31.797Z",
            "started_transferring_at": "2021-05-14T00:01:31.847Z",
            "errored_at": null,
            "fulfilled_at": "2021-05-14T00:01:33.198Z",
            "url": "https://streem-prod-us-artifacts.s3.us-west-2.amazonaws.com/recordingTracks/streem/rm_5TkLLUBj0BdZZELEgkg123SE0/tr_4tbTfS1SRMbRGdJ8fLDoz4/RT245c3ca82856e8c734ef5a2ba5d43d5d.mka?X-Amz-Security-Token=IQoJb3JpZ2luX2VjEFUaCXVzLXdlc3QtMiJHMEUCIQCxXgVxSb5U7fRy9OEd5VzcKiAELS0U58hA%2BsU%2BFgbyyQIgSAtBbxXq4c%2BrIMz2N9f6CtzR1vIruJx2LbKi2t4nUeEq%2FgMI3v%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARACGgwyNjA0NjIzMjE3MTYiDOB8KckhB1VZJq%2BXrSrSA%2F1O5QnTFcAoXbQqTZUZ1Jo%2FLhWlmNXoexXrIZIbXdDB5FG1GFuXOdyAL9Lx2oiBqj2f1g%2BkizoN0lKrAb7g%2F%2BN%2BWq3TSeA1PultKELJs%2BJFXT8vQHoFyIgaR9NjdT4mEFePgQlzhwlNBSeONLW6UdqI633TC72SZqTAVIZyVDt9GCMK22iPCa6n97bs89aVSLnt6bPWbqWRWVzDjKBrXbPhfgAaUb6zsd4qEZzkyhiiiKSAvo2LRTPqlpshYMdkluooSI0EoNhkkUsClRPoGiW773vzgg%2B5W3bMdTSnIM4oQ0Eu%2FvTIBPWNlIQw7aoUSMhu7ZAHE30%2BsjpbkOZTJyv8bQ95QWnNMq46aVSsR45VQPSU4S3mzMRg%2B2hNm1SX5cQe3GiIZHaSIHZ1c5fNkaGs453Q6iVFVCO9oUG2SOtLTv13HYvVmhmORLNZzkONHIZdQQg8mYoelYfvxfoer0QFYGtaacUPuCMNbBcMysaEfglFlRVlpgVAcwEmwRuqscT%2F1QGGkG1MmAKGM7LVcwsbLhbvgcXKQ2QbDAmQoL1pVRZazh%2B%2BcrzkmCEB6w9ovGWhyQUpvlwvec1VFayn4E4rbzttpzMVvqCEQdT9qdAi04EwgK72hAY6pQGLhC9CI4Ek2sn2d5TBLlMJEVglZ2XV2hzRXB8nYcAm3RVWxZbsIq4Ri8Dt9Em4g32sutkYPA8N8qFh7PJLBYyq4A61wbTJxJ2MHeauW6I1BMmvuJoitM1SFcxSca3EP%2BKwl8z8EvuMUIJnTbves0pEHn8rI6VqEgE4RCR4OE26G8JvD0smuG2rzMjTv8ECHzTjsMVq9EeYXlUY5sL7seoooXpuoXI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20210514T000355Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Credential=ASIATZJGDUA2DBYOONOC%2F20210514%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Signature=ffdd10c5ecc76e241eb2b7d97971c2716dd268101617e49c34a67f57e076b02e",
            "created_at": "2021-05-14T00:00:48.178Z",
            "recording_source": "SOURCE_TWILIO",
            "source_recording_track_sid": null
          }
        },
        {
          "sid": "ss_4f4o1OKlqZhZUDK6rZALxy",
          "room_sid": "rm_5TkLLUBj0BdZZELEgkg123SE0",
          "type": "STREEMSHOT",
          "deleted": false,
          "scheduled_for_deletion_at": null,
          "deleted_at": null,
          "streemshot": {
            "status": "STATUS_FULFILLED",
            "requested_at": "2021-05-14T00:00:48.758Z",
            "requested_by_user_sid": "usr_63i8zwFPmJKubB4cAvm234COs",
            "requested_by_device_sid": "dvc_5ebGDxejIgqg8G1Rd3lJg1",
            "fulfilled_at": "2021-05-14T00:00:49.164Z",
            "fulfilled_by_user_sid": "usr_5EU6ZQy3AgRy7MiAVFR1233Uy",
            "fulfilled_by_device_sid": "dvc_3CDIi6SW9qp2FQlbtlcvX111",
            "source": {
              "url": "https://streem-prod-us-artifacts.s3.us-west-2.amazonaws.com/streemshots/streem/rm_5TkLLUBj0BdZZELEgkg123SE0/ss_4f4o1OKlqZhZUDK6rZALxy/streemshot_1620950449111.jpg?X-Amz-Security-Token=IQoJb3JpZ2luX2VjEFUaCXVzLXdlc3QtMiJHMEUCIQCxXgVxSb5U7fRy9OEd5VzcKiAELS0U58hA%2BsU%2BFgbyyQIgSAtBbxXq4c%2BrIMz2N9f6CtzR1vIruJx2LbKi2t4nUeEq%2FgMI3v%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARACGgwyNjA0NjIzMjE3MTYiDOB8KckhB1VZJq%2BXrSrSA%2F1O5QnTFcAoXbQqTZUZ1Jo%2FLhWlmNXoexXrIZIbXdDB5FG1GFuXOdyAL9Lx2oiBqj2f1g%2BkizoN0lKrAb7g%2F%2BN%2BWq3TSeA1PultKELJs%2BJFXT8vQHoFyIgaR9NjdT4mEFePgQlzhwlNBSeONLW6UdqI633TC72SZqTAVIZyVDt9GCMK22iPCa6n97bs89aVSLnt6bPWbqWRWVzDjKBrXbPhfgAaUb6zsd4qEZzkyhiiiKSAvo2LRTPqlpshYMdkluooSI0EoNhkkUsClRPoGiW773vzgg%2B5W3bMdTSnIM4oQ0Eu%2FvTIBPWNlIQw7aoUSMhu7ZAHE30%2BsjpbkOZTJyv8bQ95QWnNMq46aVSsR45VQPSU4S3mzMRg%2B2hNm1SX5cQe3GiIZHaSIHZ1c5fNkaGs453Q6iVFVCO9oUG2SOtLTv13HYvVmhmORLNZzkONHIZdQQg8mYoelYfvxfoer0QFYGtaacUPuCMNbBcMysaEfglFlRVlpgVAcwEmwRuqscT%2F1QGGkG1MmAKGM7LVcwsbLhbvgcXKQ2QbDAmQoL1pVRZazh%2B%2BcrzkmCEB6w9ovGWhyQUpvlwvec1VFayn4E4rbzttpzMVvqCEQdT9qdAi04EwgK72hAY6pQGLhC9CI4Ek2sn2d5TBLlMJEVglZ2XV2hzRXB8nYcAm3RVWxZbsIq4Ri8Dt9Em4g32sutkYPA8N8qFh7PJLBYyq4A61wbTJxJ2MHeauW6I1BMmvuJoitM1SFcxSca3EP%2BKwl8z8EvuMUIJnTbves0pEHn8rI6VqEgE4RCR4OE26G8JvD0smuG2rzMjTv8ECHzTjsMVq9EeYXlUY5sL7seoooXpuoXI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20210514T000355Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Credential=ASIATZJGDUA2DBYOONOC%2F20210514%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Signature=1518d636c65810260c85344e4ebea8775900a061b742ce01300cb8c621f1f8ed",
              "pose": {
                "position": [
                  0.0050209705,
                  -0.0021648332,
                  0.006516804
                ],
                "rotation": [
                  -0.21354385,
                  -0.018909799,
                  0.018702257,
                  0.9765714
                ]
              },
              "feature_points": [
                {
                  "x": -0.014070658,
                  "y": -0.013641749,
                  "z": 0.0011784616
                },
                {
                  "x": -0.013194959,
                  "y": -0.016866395,
                  "z": -0.002723596
                },
                {
                  "x": -0.013285985,
                  "y": -0.0082147475,
                  "z": 0.0027007535
                },
                {
                  "x": -0.013991802,
                  "y": -0.013360289,
                  "z": 0.0012629721
                },
                {
                  "x": -0.013409235,
                  "y": -0.0076056607,
                  "z": 0.0032034223
                },
                {
                  "x": -0.013350043,
                  "y": -0.0079510575,
                  "z": 0.00304741
                },
                {
                  "x": -0.013291125,
                  "y": -0.013705618,
                  "z": -0.0006577447
                },
                {
                  "x": -0.013993033,
                  "y": -0.013329785,
                  "z": 0.0012652124
                },
                {
                  "x": -0.013336775,
                  "y": -0.007968621,
                  "z": 0.0028708857
                },
                {
                  "x": -0.013355561,
                  "y": -0.011497938,
                  "z": 0.0007901327
                },
                {
                  "x": -0.013945599,
                  "y": -0.013228806,
                  "z": 0.0012971819
                },
                {
                  "x": -0.012131642,
                  "y": -0.0038353782,
                  "z": -0.009262113
                },
                {
                  "x": -0.013179581,
                  "y": -0.011520589,
                  "z": 0.0007700017
                },
                {
                  "x": -0.013694269,
                  "y": -0.012753815,
                  "z": 0.0014560516
                },
                {
                  "x": -0.015436199,
                  "y": -0.011165326,
                  "z": 0.0016825693
                },
                {
                  "x": -0.013383823,
                  "y": -0.011826825,
                  "z": 0.000567778
                },
                {
                  "x": -0.013908495,
                  "y": -0.013186129,
                  "z": 0.0013041594
                },
                {
                  "x": -0.017332152,
                  "y": -0.009971409,
                  "z": 0.0018368782
                },
                {
                  "x": -0.012807334,
                  "y": -0.0046388656,
                  "z": -0.003880457
                },
                {
                  "x": -0.013391128,
                  "y": -0.011981315,
                  "z": 0.000558964
                },
                {
                  "x": -0.015752273,
                  "y": -0.010817304,
                  "z": 0.0020420575
                },
                {
                  "x": -0.015289627,
                  "y": -0.012871658,
                  "z": 0.0017059911
                },
                {
                  "x": -0.012824852,
                  "y": -0.0044473596,
                  "z": -0.004545018
                },
                {
                  "x": -0.014753485,
                  "y": -0.008341413,
                  "z": 0.0014337464
                },
                {
                  "x": -0.013441234,
                  "y": -0.012367809,
                  "z": 0.0003186944
                },
                {
                  "x": -0.015464911,
                  "y": -0.013103851,
                  "z": 0.0016689305
                },
                {
                  "x": -0.01089552,
                  "y": -0.023635894,
                  "z": -0.0045907805
                },
                {
                  "x": -0.012741527,
                  "y": -0.0044201333,
                  "z": -0.0049481997
                },
                {
                  "x": -0.013465762,
                  "y": -0.011759817,
                  "z": 0.00073026493
                },
                {
                  "x": -0.012786045,
                  "y": -0.013326619,
                  "z": 0.00072979555
                },
                {
                  "x": -0.0155178495,
                  "y": -0.013552463,
                  "z": 0.0013703373
                },
                {
                  "x": -0.011706748,
                  "y": -0.00611338,
                  "z": 0.0005008904
                },
                {
                  "x": -0.012769445,
                  "y": -0.004445294,
                  "z": -0.0049184477
                },
                {
                  "x": -0.0117257,
                  "y": -0.010170162,
                  "z": 0.002675286
                },
                {
                  "x": -0.02159439,
                  "y": -0.016764294,
                  "z": -0.0022043064
                },
                {
                  "x": -0.020294897,
                  "y": -0.022573996,
                  "z": -0.0017622132
                },
                {
                  "x": -0.01167715,
                  "y": -0.011414657,
                  "z": 0.003523763
                },
                {
                  "x": -0.019413058,
                  "y": -0.02042688,
                  "z": -0.0009099506
                },
                {
                  "x": -0.025419978,
                  "y": -0.02135738,
                  "z": -0.0059727253
                },
                {
                  "x": -0.018926052,
                  "y": -0.019203559,
                  "z": -0.0004565646
                },
                {
                  "x": -0.027375607,
                  "y": -0.02368485,
                  "z": -0.007930379
                },
                {
                  "x": -0.018864306,
                  "y": -0.0191124,
                  "z": -0.00042616483
                },
                {
                  "x": -0.028798116,
                  "y": -0.025459085,
                  "z": -0.009329783
                },
                {
                  "x": -0.018277789,
                  "y": -0.017240493,
                  "z": 0.0022051963
                },
                {
                  "x": -0.018912977,
                  "y": -0.019102776,
                  "z": -0.0004050699
                },
                {
                  "x": -0.021820858,
                  "y": -0.024324914,
                  "z": 0.0013655927
                },
                {
                  "x": -0.030142557,
                  "y": -0.026981432,
                  "z": -0.010540159
                },
                {
                  "x": -0.018974045,
                  "y": -0.019141413,
                  "z": -0.00042935694
                },
                {
                  "x": -0.019142926,
                  "y": -0.020712446,
                  "z": -0.00020448025
                },
                {
                  "x": -0.01992422,
                  "y": -0.021614056,
                  "z": 0.0005653021
                },
                {
                  "x": -0.031425416,
                  "y": -0.028445886,
                  "z": -0.011721896
                },
                {
                  "x": -0.011297168,
                  "y": -0.016216634,
                  "z": 0.0017394023
                },
                {
                  "x": -0.019479401,
                  "y": -0.020226682,
                  "z": -0.0009194473
                },
                {
                  "x": -0.0127199525,
                  "y": -0.018043147,
                  "z": 0.0005129259
                },
                {
                  "x": -0.0130316755,
                  "y": -0.016495602,
                  "z": 0.0012246286
                },
                {
                  "x": -0.016912617,
                  "y": -0.014430116,
                  "z": 0.002019303
                },
                {
                  "x": -0.020096166,
                  "y": -0.019510452,
                  "z": 0.000078134704
                },
                {
                  "x": -0.011142293,
                  "y": -0.012114295,
                  "z": 0.003918959
                },
                {
                  "x": -0.013243345,
                  "y": -0.015596317,
                  "z": 0.0016463725
                },
                {
                  "x": -0.01182155,
                  "y": -0.010841521,
                  "z": 0.004691583
                },
                {
                  "x": -0.013111558,
                  "y": -0.009489029,
                  "z": 0.0018667039
                },
                {
                  "x": -0.021467533,
                  "y": -0.025772914,
                  "z": -0.00082098413
                },
                {
                  "x": -0.017900512,
                  "y": -0.011792724,
                  "z": 0.003315304
                },
                {
                  "x": -0.013437918,
                  "y": -0.016520381,
                  "z": 0.00243781
                },
                {
                  "x": -0.01384156,
                  "y": -0.010397023,
                  "z": 0.006943644
                },
                {
                  "x": -0.018875577,
                  "y": -0.0146909,
                  "z": 0.004513922
                },
                {
                  "x": -0.012553968,
                  "y": -0.022701157,
                  "z": -0.00073553436
                },
                {
                  "x": -0.013440194,
                  "y": -0.015102007,
                  "z": 0.0020113122
                },
                {
                  "x": -0.020160405,
                  "y": -0.014247803,
                  "z": 0.0051876158
                },
                {
                  "x": -0.008201892,
                  "y": -0.014920695,
                  "z": -0.014886811
                },
                {
                  "x": -0.019517755,
                  "y": -0.01756452,
                  "z": 0.0030515348
                },
                {
                  "x": -0.021363901,
                  "y": -0.031541254,
                  "z": -0.010181703
                },
                {
                  "x": -0.018445943,
                  "y": -0.017191552,
                  "z": -0.00034147128
                },
                {
                  "x": -0.007948907,
                  "y": -0.026058596,
                  "z": -0.0013350351
                },
                {
                  "x": -0.006138779,
                  "y": -0.01766668,
                  "z": -0.021815388
                },
                {
                  "x": -0.02839784,
                  "y": -0.030349651,
                  "z": 0.00037836144
                },
                {
                  "x": -0.014719812,
                  "y": -0.0074931495,
                  "z": 0.007850707
                },
                {
                  "x": -0.041884497,
                  "y": -0.05704344,
                  "z": -0.008452306
                },
                {
                  "x": -0.0103511475,
                  "y": -0.01561535,
                  "z": -0.005039842
                },
                {
                  "x": -0.028317317,
                  "y": -0.02133061,
                  "z": -0.008389961
                },
                {
                  "x": -0.0479038,
                  "y": -0.06893584,
                  "z": -0.012499781
                },
                {
                  "x": -0.012247675,
                  "y": -0.010990409,
                  "z": 0.0057754945
                },
                {
                  "x": -0.014692113,
                  "y": -0.008867897,
                  "z": 0.0039263032
                },
                {
                  "x": -0.015019297,
                  "y": -0.006704597,
                  "z": 0.007223656
                },
                {
                  "x": -0.018016312,
                  "y": -0.012079386,
                  "z": 0.0063797534
                },
                {
                  "x": -0.02731557,
                  "y": -0.020299956,
                  "z": -0.0073351916
                },
                {
                  "x": -0.0494009,
                  "y": -0.07188947,
                  "z": -0.013507148
                },
                {
                  "x": -0.04417271,
                  "y": -0.061710652,
                  "z": -0.010166649
                },
                {
                  "x": -0.043911695,
                  "y": -0.06195722,
                  "z": -0.010082206
                },
                {
                  "x": -0.0048065577,
                  "y": 0.0008994732,
                  "z": -0.01981307
                },
                {
                  "x": -0.04395835,
                  "y": -0.06273432,
                  "z": -0.010210827
                },
                {
                  "x": -0.04368946,
                  "y": -0.06269275,
                  "z": -0.010010965
                },
                {
                  "x": -0.0441395,
                  "y": -0.06393413,
                  "z": -0.010270352
                },
                {
                  "x": -0.007841969,
                  "y": -0.061101254,
                  "z": -0.015346872
                },
                {
                  "x": -0.006454978,
                  "y": -0.015356164,
                  "z": 0.004224373
                },
                {
                  "x": -0.018395169,
                  "y": -0.03478539,
                  "z": -0.011374753
                },
                {
                  "x": -0.007587513,
                  "y": -0.06345998,
                  "z": -0.016380964
                }
              ],
              "camera_intrinsics": {
                "focal_length_px_x": 940.652,
                "focal_length_px_y": 940.652,
                "axis_skew": 0,
                "principal_point_x": 356.033,
                "principal_point_y": 614.857
              }
            },
            "detections": [
              {
                "detection_sid": "det_216owXJ1q1EplLDKNnajE8",
                "type": "DETECTION_TYPE_LOGO",
                "description": "Coffee Fellows",
                "confidence": 0.5576095,
                "bounding_box": null,
                "source": "DETECTION_SOURCE_AUTO",
                "hidden": false,
                "extractor": "streem:v1.0.0"
              },
              {
                "detection_sid": "det_2BNzdlAfJ9SeAqcIGGpvqm",
                "type": "DETECTION_TYPE_LABEL",
                "description": "Liquid",
                "confidence": 0.9490834,
                "bounding_box": null,
                "source": "DETECTION_SOURCE_AUTO",
                "hidden": false,
                "extractor": "streem:v1.0.0"
              },
              {
                "detection_sid": "det_6CmzvtqPWWv9ImaP7KE9Wy",
                "type": "DETECTION_TYPE_LABEL",
                "description": "Drinkware",
                "confidence": 0.9405277,
                "bounding_box": null,
                "source": "DETECTION_SOURCE_AUTO",
                "hidden": false,
                "extractor": "streem:v1.0.0"
              },
              {
                "detection_sid": "det_54vxEd4pPlpw4YCNRcczv",
                "type": "DETECTION_TYPE_LABEL",
                "description": "Bottle",
                "confidence": 0.93454623,
                "bounding_box": null,
                "source": "DETECTION_SOURCE_AUTO",
                "hidden": false,
                "extractor": "streem:v1.0.0"
              },
              {
                "detection_sid": "det_3Ted7XnHYgnF922lPHJMWo",
                "type": "DETECTION_TYPE_LABEL",
                "description": "White",
                "confidence": 0.92187625,
                "bounding_box": null,
                "source": "DETECTION_SOURCE_AUTO",
                "hidden": false,
                "extractor": "streem:v1.0.0"
              },
              {
                "detection_sid": "det_4PYXlBzGVkg69UWYmk83SI",
                "type": "DETECTION_TYPE_LABEL",
                "description": "Fluid",
                "confidence": 0.87044823,
                "bounding_box": null,
                "source": "DETECTION_SOURCE_AUTO",
                "hidden": false,
                "extractor": "streem:v1.0.0"
              },
              {
                "detection_sid": "det_2dme5FnEgpIIbZGUARD2pB",
                "type": "DETECTION_TYPE_LABEL",
                "description": "Solution",
                "confidence": 0.8617175,
                "bounding_box": null,
                "source": "DETECTION_SOURCE_AUTO",
                "hidden": false,
                "extractor": "streem:v1.0.0"
              },
              {
                "detection_sid": "det_1499G1uCREO2CXj1X5qDLJ",
                "type": "DETECTION_TYPE_LABEL",
                "description": "Water",
                "confidence": 0.85268396,
                "bounding_box": null,
                "source": "DETECTION_SOURCE_AUTO",
                "hidden": false,
                "extractor": "streem:v1.0.0"
              },
              {
                "detection_sid": "det_5HIFizSWwCHPWgpxufKGLE",
                "type": "DETECTION_TYPE_LABEL",
                "description": "Plastic bottle",
                "confidence": 0.8447777,
                "bounding_box": null,
                "source": "DETECTION_SOURCE_AUTO",
                "hidden": false,
                "extractor": "streem:v1.0.0"
              },
              {
                "detection_sid": "det_1wjA5uLSF03rZ3nTP9tREx",
                "type": "DETECTION_TYPE_LABEL",
                "description": "Glass bottle",
                "confidence": 0.83644825,
                "bounding_box": null,
                "source": "DETECTION_SOURCE_AUTO",
                "hidden": false,
                "extractor": "streem:v1.0.0"
              },
              {
                "detection_sid": "det_kKpwDDy5zSs4JGu5NMEBi",
                "type": "DETECTION_TYPE_LABEL",
                "description": "Drink",
                "confidence": 0.8292632,
                "bounding_box": null,
                "source": "DETECTION_SOURCE_AUTO",
                "hidden": false,
                "extractor": "streem:v1.0.0"
              },
              {
                "detection_sid": "det_533csulXLZh25yEZLS92mF",
                "type": "DETECTION_TYPE_FULL_TEXT",
                "description": "ALSTN\n7AM\nGOOD MORNING!\n9AM\nYOU'VE GOT IT\n11AM\nDON'T STOP\n1PM\nLET'S GET IT\n3PM\nKEEP DRINKING\nSPM\nNO EXCUSES\nBOL\n7PM\nA LITTLE BIT MORE\nOPM\nWELL DONEI\n",
                "confidence": 0,
                "bounding_box": null,
                "source": "DETECTION_SOURCE_AUTO",
                "hidden": false,
                "extractor": "streem:v1.0.0"
              }
            ],
            "current_revision": {
              "revision_number": 1,
              "streemshot_sid": "ss_4f4o1OKlqZhZUDK6rZALxy",
              "storage_url": "s3://streem-prod-us-artifacts/streemshots/streem/rm_5TkLLUBj0BdZZELEgkg123SE0/ssrev_1e1t3XZAqcpVlh1ZS2ouui/streemshot_ar_1620950449163.jpg",
              "ar_elements": [],
              "url": "https://streem-prod-us-artifacts.s3.us-west-2.amazonaws.com/streemshots/streem/rm_5TkLLUBj0BdZZELEgkg123SE0/ssrev_1e1t3XZAqcpVlh1ZS2ouui/streemshot_ar_1620950449163.jpg?X-Amz-Security-Token=IQoJb3JpZ2luX2VjEFUaCXVzLXdlc3QtMiJHMEUCIQCxXgVxSb5U7fRy9OEd5VzcKiAELS0U58hA%2BsU%2BFgbyyQIgSAtBbxXq4c%2BrIMz2N9f6CtzR1vIruJx2LbKi2t4nUeEq%2FgMI3v%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARACGgwyNjA0NjIzMjE3MTYiDOB8KckhB1VZJq%2BXrSrSA%2F1O5QnTFcAoXbQqTZUZ1Jo%2FLhWlmNXoexXrIZIbXdDB5FG1GFuXOdyAL9Lx2oiBqj2f1g%2BkizoN0lKrAb7g%2F%2BN%2BWq3TSeA1PultKELJs%2BJFXT8vQHoFyIgaR9NjdT4mEFePgQlzhwlNBSeONLW6UdqI633TC72SZqTAVIZyVDt9GCMK22iPCa6n97bs89aVSLnt6bPWbqWRWVzDjKBrXbPhfgAaUb6zsd4qEZzkyhiiiKSAvo2LRTPqlpshYMdkluooSI0EoNhkkUsClRPoGiW773vzgg%2B5W3bMdTSnIM4oQ0Eu%2FvTIBPWNlIQw7aoUSMhu7ZAHE30%2BsjpbkOZTJyv8bQ95QWnNMq46aVSsR45VQPSU4S3mzMRg%2B2hNm1SX5cQe3GiIZHaSIHZ1c5fNkaGs453Q6iVFVCO9oUG2SOtLTv13HYvVmhmORLNZzkONHIZdQQg8mYoelYfvxfoer0QFYGtaacUPuCMNbBcMysaEfglFlRVlpgVAcwEmwRuqscT%2F1QGGkG1MmAKGM7LVcwsbLhbvgcXKQ2QbDAmQoL1pVRZazh%2B%2BcrzkmCEB6w9ovGWhyQUpvlwvec1VFayn4E4rbzttpzMVvqCEQdT9qdAi04EwgK72hAY6pQGLhC9CI4Ek2sn2d5TBLlMJEVglZ2XV2hzRXB8nYcAm3RVWxZbsIq4Ri8Dt9Em4g32sutkYPA8N8qFh7PJLBYyq4A61wbTJxJ2MHeauW6I1BMmvuJoitM1SFcxSca3EP%2BKwl8z8EvuMUIJnTbves0pEHn8rI6VqEgE4RCR4OE26G8JvD0smuG2rzMjTv8ECHzTjsMVq9EeYXlUY5sL7seoooXpuoXI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20210514T000355Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Credential=ASIATZJGDUA2DBYOONOC%2F20210514%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Signature=497a1346ff08270dc7cb4a94ce82cbb1b6bb5f53ffad56d541607dd190462b8f"
            },
            "revision_number": 1,
            "note": {
              "sid": "nt_7kJPEifcAlHle012kmmV2m",
              "created_by_user_sid": "usr_63i8zwFPmJKubB4cAvm234COs",
              "created_at": "2021-05-14T00:03:20.589624Z",
              "scope": "SCOPE_STREEMSHOT",
              "scope_sid": "ss_4f4o1OKlqZhZUDK6rZALxy",
              "last_updated_by_user_sid": "usr_63i8zwFPmJKubB4cAvm234COs",
              "last_updated_at": "2021-05-14T00:03:20.589Z",
              "text": "I am a streemshot note"
            }
          }
        },
        {
          "sid": "tr_3KlUP0c60P7H4HPw2ZgfQS",
          "room_sid": "rm_5TkLLUBj0BdZZELEgkg123SE0",
          "type": "RECORDING_TRACK",
          "deleted": false,
          "scheduled_for_deletion_at": null,
          "deleted_at": null,
          "recording_track": {
            "bucket": "streem-prod-us-artifacts",
            "filename": "RT9eb622694419d4215dd9b38eae916324.mka",
            "user_sid": "usr_63i8zwFPmJKubB4cAvm234COs",
            "track_type": "mka",
            "codec": "opus",
            "storage_url": "s3://streem-prod-us-artifacts/recordingTracks/streem/rm_5TkLLUBj0BdZZELEgkg123SE0/tr_3KlUP0c60P7H4HPw2ZgfQS/RT9eb622694419d4215dd9b38eae916324.mka",
            "status": "STATUS_FULFILLED",
            "requested_at": null,
            "started_recording_at": "2021-05-14T00:00:49.811Z",
            "finished_recording_at": "2021-05-14T00:01:31.266Z",
            "started_transferring_at": "2021-05-14T00:01:31.312Z",
            "errored_at": null,
            "fulfilled_at": "2021-05-14T00:01:32.251Z",
            "url": "https://streem-prod-us-artifacts.s3.us-west-2.amazonaws.com/recordingTracks/streem/rm_5TkLLUBj0BdZZELEgkg123SE0/tr_3KlUP0c60P7H4HPw2ZgfQS/RT9eb622694419d4215dd9b38eae916324.mka?X-Amz-Security-Token=IQoJb3JpZ2luX2VjEFUaCXVzLXdlc3QtMiJHMEUCIQCxXgVxSb5U7fRy9OEd5VzcKiAELS0U58hA%2BsU%2BFgbyyQIgSAtBbxXq4c%2BrIMz2N9f6CtzR1vIruJx2LbKi2t4nUeEq%2FgMI3v%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARACGgwyNjA0NjIzMjE3MTYiDOB8KckhB1VZJq%2BXrSrSA%2F1O5QnTFcAoXbQqTZUZ1Jo%2FLhWlmNXoexXrIZIbXdDB5FG1GFuXOdyAL9Lx2oiBqj2f1g%2BkizoN0lKrAb7g%2F%2BN%2BWq3TSeA1PultKELJs%2BJFXT8vQHoFyIgaR9NjdT4mEFePgQlzhwlNBSeONLW6UdqI633TC72SZqTAVIZyVDt9GCMK22iPCa6n97bs89aVSLnt6bPWbqWRWVzDjKBrXbPhfgAaUb6zsd4qEZzkyhiiiKSAvo2LRTPqlpshYMdkluooSI0EoNhkkUsClRPoGiW773vzgg%2B5W3bMdTSnIM4oQ0Eu%2FvTIBPWNlIQw7aoUSMhu7ZAHE30%2BsjpbkOZTJyv8bQ95QWnNMq46aVSsR45VQPSU4S3mzMRg%2B2hNm1SX5cQe3GiIZHaSIHZ1c5fNkaGs453Q6iVFVCO9oUG2SOtLTv13HYvVmhmORLNZzkONHIZdQQg8mYoelYfvxfoer0QFYGtaacUPuCMNbBcMysaEfglFlRVlpgVAcwEmwRuqscT%2F1QGGkG1MmAKGM7LVcwsbLhbvgcXKQ2QbDAmQoL1pVRZazh%2B%2BcrzkmCEB6w9ovGWhyQUpvlwvec1VFayn4E4rbzttpzMVvqCEQdT9qdAi04EwgK72hAY6pQGLhC9CI4Ek2sn2d5TBLlMJEVglZ2XV2hzRXB8nYcAm3RVWxZbsIq4Ri8Dt9Em4g32sutkYPA8N8qFh7PJLBYyq4A61wbTJxJ2MHeauW6I1BMmvuJoitM1SFcxSca3EP%2BKwl8z8EvuMUIJnTbves0pEHn8rI6VqEgE4RCR4OE26G8JvD0smuG2rzMjTv8ECHzTjsMVq9EeYXlUY5sL7seoooXpuoXI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20210514T000355Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Credential=ASIATZJGDUA2DBYOONOC%2F20210514%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Signature=1c079883c4a96f69053e5f0572f5d42594906fe25a925571f766b059186dbcb7",
            "created_at": "2021-05-14T00:00:49.811Z",
            "recording_source": "SOURCE_TWILIO",
            "source_recording_track_sid": null
          }
        },
        {
          "sid": "gps_7JnrfJpzaHNq1fKbgBTkMI",
          "room_sid": "rm_5TkLLUBj0BdZZELEgkg123SE0",
          "type": "GPS_POSITION",
          "deleted": false,
          "scheduled_for_deletion_at": null,
          "deleted_at": null,
          "gps_position": {
            "sourced_from_user_sid": "usr_5EU6ZQy3AgRy7MiAVFR1233Uy",
            "sourced_from_device_sid": "dvc_3CDIi6SW9qp2FQlbtlcvX111",
            "client_created_at": "2021-05-14T00:01:04.818Z",
            "latitude_degrees": 41.53357803177614,
            "longitude_degrees": -123.68505349728392,
            "accuracy_meters": 65,
            "formatted_address": "2100–2198 NW Some St, Portland OR 97209, United States"
          }
        },
        {
          "sid": "tr_2nFJVmfiD1gZZjbhmVCPwt",
          "room_sid": "rm_5TkLLUBj0BdZZELEgkg123SE0",
          "type": "RECORDING_TRACK",
          "deleted": false,
          "scheduled_for_deletion_at": null,
          "deleted_at": null,
          "recording_track": {
            "bucket": "streem-prod-us-artifacts",
            "filename": "recording_track.mka",
            "user_sid": null,
            "track_type": "mka",
            "codec": "opus",
            "storage_url": "s3://streem-prod-us-artifacts/recordingTracks/streem/rm_5TkLLUBj0BdZZELEgkg123SE0/tr_2nFJVmfiD1gZZjbhmVCPwt/recording_track.mka",
            "status": "STATUS_FULFILLED",
            "requested_at": null,
            "started_recording_at": "2021-05-14T00:01:32.358Z",
            "finished_recording_at": null,
            "started_transferring_at": "2021-05-14T00:02:31.351Z",
            "errored_at": null,
            "fulfilled_at": "2021-05-14T00:02:32.352Z",
            "url": "https://streem-prod-us-artifacts.s3.us-west-2.amazonaws.com/recordingTracks/streem/rm_5TkLLUBj0BdZZELEgkg123SE0/tr_2nFJVmfiD1gZZjbhmVCPwt/recording_track.mka?X-Amz-Security-Token=IQoJb3JpZ2luX2VjEFUaCXVzLXdlc3QtMiJHMEUCIQCxXgVxSb5U7fRy9OEd5VzcKiAELS0U58hA%2BsU%2BFgbyyQIgSAtBbxXq4c%2BrIMz2N9f6CtzR1vIruJx2LbKi2t4nUeEq%2FgMI3v%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARACGgwyNjA0NjIzMjE3MTYiDOB8KckhB1VZJq%2BXrSrSA%2F1O5QnTFcAoXbQqTZUZ1Jo%2FLhWlmNXoexXrIZIbXdDB5FG1GFuXOdyAL9Lx2oiBqj2f1g%2BkizoN0lKrAb7g%2F%2BN%2BWq3TSeA1PultKELJs%2BJFXT8vQHoFyIgaR9NjdT4mEFePgQlzhwlNBSeONLW6UdqI633TC72SZqTAVIZyVDt9GCMK22iPCa6n97bs89aVSLnt6bPWbqWRWVzDjKBrXbPhfgAaUb6zsd4qEZzkyhiiiKSAvo2LRTPqlpshYMdkluooSI0EoNhkkUsClRPoGiW773vzgg%2B5W3bMdTSnIM4oQ0Eu%2FvTIBPWNlIQw7aoUSMhu7ZAHE30%2BsjpbkOZTJyv8bQ95QWnNMq46aVSsR45VQPSU4S3mzMRg%2B2hNm1SX5cQe3GiIZHaSIHZ1c5fNkaGs453Q6iVFVCO9oUG2SOtLTv13HYvVmhmORLNZzkONHIZdQQg8mYoelYfvxfoer0QFYGtaacUPuCMNbBcMysaEfglFlRVlpgVAcwEmwRuqscT%2F1QGGkG1MmAKGM7LVcwsbLhbvgcXKQ2QbDAmQoL1pVRZazh%2B%2BcrzkmCEB6w9ovGWhyQUpvlwvec1VFayn4E4rbzttpzMVvqCEQdT9qdAi04EwgK72hAY6pQGLhC9CI4Ek2sn2d5TBLlMJEVglZ2XV2hzRXB8nYcAm3RVWxZbsIq4Ri8Dt9Em4g32sutkYPA8N8qFh7PJLBYyq4A61wbTJxJ2MHeauW6I1BMmvuJoitM1SFcxSca3EP%2BKwl8z8EvuMUIJnTbves0pEHn8rI6VqEgE4RCR4OE26G8JvD0smuG2rzMjTv8ECHzTjsMVq9EeYXlUY5sL7seoooXpuoXI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20210514T000355Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Credential=ASIATZJGDUA2DBYOONOC%2F20210514%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Signature=ffb9e0a9bd2b6667fecac629cbf9eecf6645a4a642c91c3714f2e9d89d9fa684",
            "created_at": "2021-05-14T00:01:32.358Z",
            "recording_source": "SOURCE_MUXER",
            "source_recording_track_sid": "tr_3KlUP0c60P7H4HPw2ZgfQS"
          }
        },
        {
          "sid": "tr_1rMAnkcf3vYPEcrimTAkPm",
          "room_sid": "rm_5TkLLUBj0BdZZELEgkg123SE0",
          "type": "RECORDING_TRACK",
          "deleted": false,
          "scheduled_for_deletion_at": null,
          "deleted_at": null,
          "recording_track": {
            "bucket": "streem-prod-us-artifacts",
            "filename": "recording_track.mka",
            "user_sid": null,
            "track_type": "mka",
            "codec": "opus",
            "storage_url": "s3://streem-prod-us-artifacts/recordingTracks/streem/rm_5TkLLUBj0BdZZELEgkg123SE0/tr_1rMAnkcf3vYPEcrimTAkPm/recording_track.mka",
            "status": "STATUS_FULFILLED",
            "requested_at": null,
            "started_recording_at": "2021-05-14T00:01:33.364Z",
            "finished_recording_at": null,
            "started_transferring_at": "2021-05-14T00:02:31.610Z",
            "errored_at": null,
            "fulfilled_at": "2021-05-14T00:02:33.200Z",
            "url": "https://streem-prod-us-artifacts.s3.us-west-2.amazonaws.com/recordingTracks/streem/rm_5TkLLUBj0BdZZELEgkg123SE0/tr_1rMAnkcf3vYPEcrimTAkPm/recording_track.mka?X-Amz-Security-Token=IQoJb3JpZ2luX2VjEFUaCXVzLXdlc3QtMiJHMEUCIQCxXgVxSb5U7fRy9OEd5VzcKiAELS0U58hA%2BsU%2BFgbyyQIgSAtBbxXq4c%2BrIMz2N9f6CtzR1vIruJx2LbKi2t4nUeEq%2FgMI3v%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARACGgwyNjA0NjIzMjE3MTYiDOB8KckhB1VZJq%2BXrSrSA%2F1O5QnTFcAoXbQqTZUZ1Jo%2FLhWlmNXoexXrIZIbXdDB5FG1GFuXOdyAL9Lx2oiBqj2f1g%2BkizoN0lKrAb7g%2F%2BN%2BWq3TSeA1PultKELJs%2BJFXT8vQHoFyIgaR9NjdT4mEFePgQlzhwlNBSeONLW6UdqI633TC72SZqTAVIZyVDt9GCMK22iPCa6n97bs89aVSLnt6bPWbqWRWVzDjKBrXbPhfgAaUb6zsd4qEZzkyhiiiKSAvo2LRTPqlpshYMdkluooSI0EoNhkkUsClRPoGiW773vzgg%2B5W3bMdTSnIM4oQ0Eu%2FvTIBPWNlIQw7aoUSMhu7ZAHE30%2BsjpbkOZTJyv8bQ95QWnNMq46aVSsR45VQPSU4S3mzMRg%2B2hNm1SX5cQe3GiIZHaSIHZ1c5fNkaGs453Q6iVFVCO9oUG2SOtLTv13HYvVmhmORLNZzkONHIZdQQg8mYoelYfvxfoer0QFYGtaacUPuCMNbBcMysaEfglFlRVlpgVAcwEmwRuqscT%2F1QGGkG1MmAKGM7LVcwsbLhbvgcXKQ2QbDAmQoL1pVRZazh%2B%2BcrzkmCEB6w9ovGWhyQUpvlwvec1VFayn4E4rbzttpzMVvqCEQdT9qdAi04EwgK72hAY6pQGLhC9CI4Ek2sn2d5TBLlMJEVglZ2XV2hzRXB8nYcAm3RVWxZbsIq4Ri8Dt9Em4g32sutkYPA8N8qFh7PJLBYyq4A61wbTJxJ2MHeauW6I1BMmvuJoitM1SFcxSca3EP%2BKwl8z8EvuMUIJnTbves0pEHn8rI6VqEgE4RCR4OE26G8JvD0smuG2rzMjTv8ECHzTjsMVq9EeYXlUY5sL7seoooXpuoXI%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20210514T000355Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Credential=ASIATZJGDUA2DBYOONOC%2F20210514%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Signature=5a84a6e24c02397e3890b4e25ff9ffb150f2006f0a94e092e5ee5b61beefbccd",
            "created_at": "2021-05-14T00:01:33.365Z",
            "recording_source": "SOURCE_MUXER",
            "source_recording_track_sid": "tr_4tbTfS1SRMbRGdJ8fLDoz4"
          }
        }
      ]
    },
    {
      "call_log_entry": {},
      "artifacts": []
    }
  ],
  "co_otherCompanyId": [
    {
      "call_log_entry": {},
      "artifacts": []
    }
  ]
}