Skip to content

Handles Asynchronous requests for make call API #146

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

## [4.10.3](https://github.com/plivo/plivo-python/tree/v4.10.3) (2020-09-14)
- Handles Asynchronous requests for make call API.

## [4.10.2](https://github.com/plivo/plivo-python/tree/v4.10.2) (2020-09-14)
- Fix GET callback_method for Start Recording API.

Expand Down
4 changes: 3 additions & 1 deletion plivo/resources/calls.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,9 @@ def create(self,
sip_headers=None,
ring_timeout=120,
parent_call_uuid=None,
error_if_parent_not_found=False):
error_if_parent_not_found=False,
callback_url=None,
callback_method=None):
if from_ in to_.split('<'):
raise ValidationError('src and destination cannot overlap')
return self.client.request('POST', ('Call', ), 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.10.2'
__version__ = '4.10.3'
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.10.2',
version='4.10.3',
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