@@ -179,6 +179,16 @@ paths:
179
179
- $ref : ' #/components/parameters/fromDateTime'
180
180
- $ref : ' #/components/parameters/toDateTime'
181
181
- $ref : ' #/components/parameters/campaignId'
182
+ - $ref : ' #/components/parameters/fromBwLatency'
183
+ - $ref : ' #/components/parameters/bwQueued'
184
+ - $ref : ' #/components/parameters/product'
185
+ - $ref : ' #/components/parameters/location'
186
+ - $ref : ' #/components/parameters/callingNumberCountryA3'
187
+ - $ref : ' #/components/parameters/calledNumberCountryA3'
188
+ - $ref : ' #/components/parameters/fromSegmentCount'
189
+ - $ref : ' #/components/parameters/toSegmentCount'
190
+ - $ref : ' #/components/parameters/fromMessageSize'
191
+ - $ref : ' #/components/parameters/toMessageSize'
182
192
- $ref : ' #/components/parameters/sort'
183
193
- $ref : ' #/components/parameters/pageToken'
184
194
- $ref : ' #/components/parameters/limit'
@@ -1716,7 +1726,22 @@ components:
1716
1726
enum :
1717
1727
- sms
1718
1728
- mms
1729
+ - rcs
1719
1730
example : sms
1731
+ productTypeEnum :
1732
+ type : string
1733
+ description : The type of product associated with the message.
1734
+ enum :
1735
+ - LOCAL_A2P
1736
+ - P2P
1737
+ - SHORT_CODE_REACH
1738
+ - TOLL_FREE
1739
+ - HOSTED_SHORT_CODE
1740
+ - ALPHA_NUMERIC
1741
+ - RBM_MEDIA
1742
+ - RBM_RICH
1743
+ - RBM_CONVERSATIONAL
1744
+ example : P2P
1720
1745
fieldError :
1721
1746
type : object
1722
1747
properties :
@@ -1819,6 +1844,33 @@ components:
1819
1844
description : The campaign ID of the message if it has one.
1820
1845
nullable : true
1821
1846
example : CJEUMDK
1847
+ bwLatency :
1848
+ type : integer
1849
+ description : >-
1850
+ The Bandwidth latency of the message in seconds. Only available for
1851
+ accounts with the Advanced Quality Metrics feature enabled.
1852
+ nullable : true
1853
+ example : 20
1854
+ callingNumberCountryA3 :
1855
+ type : string
1856
+ description : The A3 country code of the calling number.
1857
+ nullable : true
1858
+ example : USA
1859
+ calledNumberCountryA3 :
1860
+ type : string
1861
+ description : The A3 country code of the called number.
1862
+ nullable : true
1863
+ example : USA
1864
+ product :
1865
+ type : string
1866
+ description : The messaging product associated with the message.
1867
+ nullable : true
1868
+ example : P2P
1869
+ location :
1870
+ type : string
1871
+ description : The location ID associated with this message.
1872
+ nullable : true
1873
+ example : 123ID
1822
1874
pageInfo :
1823
1875
title : PageInfo
1824
1876
type : object
@@ -6940,6 +6992,90 @@ components:
6940
6992
example : CJEUMDK
6941
6993
schema :
6942
6994
type : string
6995
+ fromBwLatency :
6996
+ in : query
6997
+ name : fromBwLatency
6998
+ required : false
6999
+ description : >-
7000
+ The minimum Bandwidth latency of the message in seconds. Only available
7001
+ for accounts with the Advanced Quality Metrics feature enabled.
7002
+ example : 5
7003
+ schema :
7004
+ type : integer
7005
+ bwQueued :
7006
+ in : query
7007
+ name : bwQueued
7008
+ required : false
7009
+ description : >-
7010
+ A boolean value indicating whether the message is queued in the
7011
+ Bandwidth network.
7012
+ example : true
7013
+ schema :
7014
+ type : boolean
7015
+ product :
7016
+ in : query
7017
+ name : product
7018
+ required : false
7019
+ description : Messaging product associated with the message.
7020
+ example : P2P
7021
+ schema :
7022
+ $ref : ' #/components/schemas/productTypeEnum'
7023
+ location :
7024
+ in : query
7025
+ name : location
7026
+ required : false
7027
+ description : Location Id associated with the message.
7028
+ example : 123ABC
7029
+ schema :
7030
+ type : string
7031
+ callingNumberCountryA3 :
7032
+ in : query
7033
+ name : callingNumberCountryA3
7034
+ required : false
7035
+ description : Calling number country in A3 format.
7036
+ example : USA
7037
+ schema :
7038
+ type : string
7039
+ calledNumberCountryA3 :
7040
+ in : query
7041
+ name : calledNumberCountryA3
7042
+ required : false
7043
+ description : Called number country in A3 format.
7044
+ example : USA
7045
+ schema :
7046
+ type : string
7047
+ fromSegmentCount :
7048
+ in : query
7049
+ name : fromSegmentCount
7050
+ required : false
7051
+ description : Segment count (start range).
7052
+ example : 1
7053
+ schema :
7054
+ type : integer
7055
+ toSegmentCount :
7056
+ in : query
7057
+ name : toSegmentCount
7058
+ required : false
7059
+ description : Segment count (end range).
7060
+ example : 3
7061
+ schema :
7062
+ type : integer
7063
+ fromMessageSize :
7064
+ in : query
7065
+ name : fromMessageSize
7066
+ required : false
7067
+ description : Message size (start range).
7068
+ example : 100
7069
+ schema :
7070
+ type : integer
7071
+ toMessageSize :
7072
+ in : query
7073
+ name : toMessageSize
7074
+ required : false
7075
+ description : Message size (end range).
7076
+ example : 120
7077
+ schema :
7078
+ type : integer
6943
7079
sort :
6944
7080
in : query
6945
7081
name : sort
0 commit comments