Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Change Log
## [4.62.1](https://github.com/plivo/plivo-python/tree/v4.62.1) (2026-07-27)
**Feature - Internal flag support on Endpoint create**
- Added `internal` optional parameter to Endpoint `create` method to mark newly created SIP endpoints as internal at creation time

## [4.61.0](https://github.com/plivo/plivo-python/tree/v4.61.0) (2026-06-11)
**Feature - PhoneNumber buy compliance application support**
- Added optional `compliance_application_id` parameter to `numbers.buy()`, sent as the `compliance_application_id` wire param. Lets regulated numbers (e.g. India) be purchased with an approved regulatory compliance application linked at purchase time. Backward-compatible trailing optional argument.
Expand Down
3 changes: 2 additions & 1 deletion plivo/resources/endpoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ class Endpoints(PlivoResourceInterface):
app_id=[optional(of_type(six.text_type))],
callback_url=[optional(is_url())],
callback_method=[optional(of_type(six.text_type))],
internal=[optional(of_type(bool))],
)
def create(self, username, password, alias, app_id=None, callback_url=None, callback_method=None):
def create(self, username, password, alias, app_id=None, callback_url=None, callback_method=None, internal=None):
return self.client.request('POST', ('Endpoint', ),
to_param_dict(self.create, locals()), is_voice_request=True)

Expand Down
2 changes: 1 addition & 1 deletion plivo/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# -*- coding: utf-8 -*-
__version__ = '4.61.0'
__version__ = '4.62.1'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name='plivo',
version='4.61.0',
version='4.62.1',
description='A Python SDK to make voice calls & send SMS using Plivo and to generate Plivo XML',
long_description=long_description,
url='https://github.com/plivo/plivo-python',
Expand Down
Loading