Skip to content

Commit 3521e63

Browse files
Merge pull request #287 from plivo/list-mdr-filter
support for from and to number filter for message
2 parents b1df2e9 + ac94cb1 commit 3521e63

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Change Log
2-
2+
## [4.58.3](https://github.com/plivo/plivo-python/tree/v4.58.3) (2025-01-14)
3+
- Added `from_number` and `to_number` filter support for `list messages` API
4+
-
35
## [4.58.2](https://github.com/plivo/plivo-python/tree/v4.58.2) (2024-12-16)
46
- Fixed broken link in README.md
57

plivo/resources/messages.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,8 @@ def list(self,
154154
message_type=None,
155155
conversation_id=None,
156156
conversation_origin=None,
157+
from_number=None,
158+
to_number=None,
157159
):
158160
return self.client.request(
159161
'GET', ('Message', ),

plivo/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# -*- coding: utf-8 -*-
2-
__version__ = '4.58.2'
2+
__version__ = '4.58.3'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name='plivo',
13-
version='4.58.2',
13+
version='4.58.3',
1414
description='A Python SDK to make voice calls & send SMS using Plivo and to generate Plivo XML',
1515
long_description=long_description,
1616
url='https://github.com/plivo/plivo-python',

0 commit comments

Comments
 (0)