You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "The id of the first agent who picked up the call"
7
+
},
8
+
"call_charge": {
9
+
"type": ["string", "null"],
10
+
"description": "Total charge for the call. String representation of a decimal number with six decimal places. Example: \"1.230000\". Null if no charge was received from Twilio"
11
+
},
12
+
"call_group_id": {
13
+
"type": ["integer", "null"],
14
+
"description": "The id number of the group the call was last placed in before completion."
15
+
},
16
+
"call_recording_consent": {
17
+
"type": ["string"],
18
+
"description": "Call recording consent value configured for the phone number",
19
+
"enum": ["always", "opt_in", "opt_out", "never"]
20
+
},
21
+
"call_recording_consent_action": {
22
+
"type": ["string", "null"],
23
+
"description": "Keypress the caller chose to give their call recording consent option.",
24
+
"enum": ["3"]
25
+
},
26
+
"callback": {
27
+
"type": ["boolean"],
28
+
"description": "True if the call was initiated by a callback request from the customer"
29
+
},
30
+
"callback_source": {
31
+
"type": ["string", "null"],
32
+
"description": "The source of the callback request",
"description": "Name of the group that received the call through IVR routing. null if IVR is disabled"
91
+
},
92
+
"ivr_hops": {
93
+
"type": ["integer", "null"],
94
+
"description": "How many menu options the customer went through in IVR before talking to an agent. null if IVR is disabled"
95
+
},
96
+
"ivr_routed_to": {
97
+
"type": ["string", "null"],
98
+
"description": "Phone number where call was routed to by IVR. Example: \"+1311123456789\". null if IVR is disabled"
99
+
},
100
+
"ivr_time_spent": {
101
+
"type": ["integer", "null"],
102
+
"description": "How long in seconds the customer spent in IVR. Null if IVR is disabled"
103
+
},
104
+
"minutes_billed": {
105
+
"type": ["integer"],
106
+
"description": "Minutes billed"
107
+
},
108
+
"not_recording_time": {
109
+
"type": ["integer"],
110
+
"description": "How long in seconds spent not recording on the call"
111
+
},
112
+
"outside_business_hours": {
113
+
"type": ["boolean"],
114
+
"description": "The call was received outside business hours"
115
+
},
116
+
"overflowed": {
117
+
"type": ["boolean"],
118
+
"description": "True if the call overflowed"
119
+
},
120
+
"overflowed_to": {
121
+
"type": ["string", "null"],
122
+
"description": "The phone number that the call overflowed to. null if overflowed is false"
123
+
},
124
+
"phone_number": {
125
+
"type": ["string", "null"],
126
+
"description": "Talk phone associated with the call. Example: \"+1311123456789\""
127
+
},
128
+
"phone_number_id": {
129
+
"type": ["integer"],
130
+
"description": "Talk phone number id"
131
+
},
132
+
"quality_issues": {
133
+
"type": ["array"],
134
+
"description": "A summary of the call's quality issues related to the call provided to Zendesk from Twilio. Until the information is made available by Twilio, the array contains \"information_not_available\". If there are no issues, the array contains \"none\". Other possible values: one or more of \"silence\", \"high_jitter\", \"high_packet_loss\", \"high_pdd\", \"high_latency\"",
135
+
"items": {
136
+
"type": "string",
137
+
"enum": [
138
+
"information_not_available",
139
+
"none",
140
+
"silence",
141
+
"high_jitter",
142
+
"high_packet_loss",
143
+
"high_pdd",
144
+
"high_latency"
145
+
]
146
+
}
147
+
},
148
+
"recording_control_interactions": {
149
+
"type": ["integer"],
150
+
"description": "The amount of times agents have paused or resumed a recording on the call."
151
+
},
152
+
"recording_time": {
153
+
"type": ["integer"],
154
+
"description": "How long in seconds spent recording on the call"
155
+
},
156
+
"talk_time": {
157
+
"type": ["integer"],
158
+
"description": "Sum of how long in seconds the customer was in conference with an agent(s). If a call is not accepted by an agent this will be 0"
159
+
},
160
+
"ticket_id": {
161
+
"type": ["integer", "null"],
162
+
"description": "The id of the ticket related to the call"
163
+
},
164
+
"time_to_answer": {
165
+
"type": ["integer", "null"],
166
+
"description": "How long in seconds the customer waited for an agent to answer after hearing the Available agents greeting"
167
+
},
168
+
"updated_at": {
169
+
"type": ["string"],
170
+
"description": "When the call object was last created",
171
+
"format": "date-time"
172
+
},
173
+
"voicemail": {
174
+
"type": ["boolean"],
175
+
"description": "If true, the call was a voicemail"
176
+
},
177
+
"wait_time": {
178
+
"type": ["integer"],
179
+
"description": "How long in seconds the customer was in the call before an agent answered"
180
+
},
181
+
"wrap_up_time": {
182
+
"type": ["integer"],
183
+
"description": "Sum of how long in seconds the agent(s) spent in wrap up"
0 commit comments