Skip to main content

retell sdk

Project description

retell

🏗 Welcome to your new SDK! 🏗

It has been generated successfully based on your OpenAPI spec. However, it is not yet ready for production use. Here are some next steps:

SDK Installation

pip install retell

SDK Example Usage

Create an outbound phone call

Initiate an outbound phone call.

import sdk
from sdk.models import operations

s = sdk.SDK(
    api_key="<YOUR_BEARER_TOKEN_HERE>",
)

req = operations.CreatePhoneCallRequestBody(
    phone_number=operations.PhoneNumber(
        from_='+14159095857',
        to='+14159095858',
    ),
)

res = s.create_phone_call(req)

if res.object is not None:
    # handle response
    pass

Retrieve a on-going or finished call

Retrieve details of a specific call

import sdk

s = sdk.SDK(
    api_key="<YOUR_BEARER_TOKEN_HERE>",
)


res = s.get_call(call_id='119c3f8e47135a29e65947eeb34cf12d')

if res.call_detail is not None:
    # handle response
    pass

List all web or phone calls

Retrieve call details

import sdk
from sdk.models import operations

s = sdk.SDK(
    api_key="<YOUR_BEARER_TOKEN_HERE>",
)


res = s.list_calls(filter_criteria=operations.FilterCriteria(
    agent_id=[
        'oBeDLoLOeuAbiuaMFXRtDOLriTJ5tSxD',
    ],
    call_type=[
        operations.CallType.INBOUND_PHONE_CALL,
        operations.CallType.OUTBOUND_PHONE_CALL,
    ],
    before_start_timestamp=1703302407399,
    after_start_timestamp=1703302407300,
    before_end_timestamp=1703302428899,
    after_end_timestamp=1703302428800,
), sort_order=operations.SortOrder.DESCENDING, limit=1000)

if res.call_details is not None:
    # handle response
    pass

Create a new voice AI agent

Create a new agent

import sdk
from sdk.models import operations

s = sdk.SDK(
    api_key="<YOUR_BEARER_TOKEN_HERE>",
)

req = operations.CreateAgentRequestBody(
    prompt='You are a marketing assistant. You help come up with creative content ideas and content like marketing emails, blog posts, tweets, ad copy and product descriptions. You respond concisely, with filler words in it.',
    voice_id='elevenlabs-xxcrwXReTKMHWjqi7Q27',
    agent_name='Jarvis',
    enable_begin_message=True,
    begin_message='Hello there, how can I help you?',
    enable_end_call=True,
    enable_end_message=False,
    end_message='Hope you have a good day, goodbye.',
)

res = s.create_agent(req)

if res.agent is not None:
    # handle response
    pass

Retrieve details of an agent

Retrieve details of a specific agent

import sdk

s = sdk.SDK(
    api_key="<YOUR_BEARER_TOKEN_HERE>",
)


res = s.get_agent(agent_id='16b980523634a6dc504898cda492e939')

if res.agent is not None:
    # handle response
    pass

List all agents

List all agents

import sdk

s = sdk.SDK(
    api_key="<YOUR_BEARER_TOKEN_HERE>",
)


res = s.list_agents()

if res.agents is not None:
    # handle response
    pass

Update an existing agent

Update an existing agent

import sdk
from sdk.models import components

s = sdk.SDK(
    api_key="<YOUR_BEARER_TOKEN_HERE>",
)


res = s.update_agent(agent_id='16b980523634a6dc504898cda492e939', agent_no_default_no_required=components.AgentNoDefaultNoRequired(
    prompt='You are a marketing assistant. You help come up with creative content ideas and content like marketing emails, blog posts, tweets, ad copy and product descriptions. You respond concisely, with filler words in it.',
    voice_id='elevenlabs-xxcrwXReTKMHWjqi7Q27',
    agent_name='Jarvis',
    enable_begin_message=True,
    begin_message='Hello there, how can I help you.',
    enable_end_call=True,
    enable_end_message=False,
    end_message='Hope you have a good day, goodbye.',
))

if res.agent is not None:
    # handle response
    pass

Delete an existing agent

Delete an existing agent

import sdk

s = sdk.SDK(
    api_key="<YOUR_BEARER_TOKEN_HERE>",
)


res = s.delete_agent(agent_id='oBeDLoLOeuAbiuaMFXRtDOLriTJ5tSxD')

if res is not None:
    # handle response
    pass

Create a new phone number

Create a new phone number

import sdk
from sdk.models import operations

s = sdk.SDK(
    api_key="<YOUR_BEARER_TOKEN_HERE>",
)

req = operations.CreatePhoneNumberRequestBody(
    agent_id='oBeDLoLOeuAbiuaMFXRtDOLriTJ5tSxD',
    area_code=415,
)

res = s.create_phone_number(req)

if res.phone_number is not None:
    # handle response
    pass

Retrieve info about a specific number

Retrieve info about a specific number

import sdk

s = sdk.SDK(
    api_key="<YOUR_BEARER_TOKEN_HERE>",
)


res = s.get_phone_number(phone_number='+14159095857')

if res.phone_number is not None:
    # handle response
    pass

List all purchased and active phone numbers

List all purchased and active phone numbers

import sdk

s = sdk.SDK(
    api_key="<YOUR_BEARER_TOKEN_HERE>",
)


res = s.list_phone_numbers()

if res.phone_numbers is not None:
    # handle response
    pass

Update an existing phone number

Update an existing phone number

import sdk
from sdk.models import operations

s = sdk.SDK(
    api_key="<YOUR_BEARER_TOKEN_HERE>",
)


res = s.update_phone_agent(phone_number='+14159095857', request_body=operations.UpdatePhoneAgentRequestBody(
    agent_id='+14159095857',
))

if res.phone_number is not None:
    # handle response
    pass

Delete a specific phone number

Delete a specific phone number

import sdk

s = sdk.SDK(
    api_key="<YOUR_BEARER_TOKEN_HERE>",
)


res = s.delete_phone_number(phone_number='<value>')

if res is not None:
    # handle response
    pass

Available Resources and Operations

SDK

Error Handling

Handling errors in this SDK should largely match your expectations. All operations return a response object or raise an error. If Error objects are specified in your OpenAPI Spec, the SDK will raise the appropriate Error type.

Error Object Status Code Content Type
errors.CreatePhoneCallResponseBody 400,401,402,422,429,500 application/json
errors.SDKError 4x-5xx /

Example

import sdk
from sdk.models import errors, operations

s = sdk.SDK(
    api_key="<YOUR_BEARER_TOKEN_HERE>",
)

req = operations.CreatePhoneCallRequestBody(
    phone_number=operations.PhoneNumber(
        from_='+14159095857',
        to='+14159095858',
    ),
)

res = None
try:
    res = s.create_phone_call(req)
except errors.CreatePhoneCallResponseBody as e:
    # handle exception
    raise(e)
except errors.SDKError as e:
    # handle exception
    raise(e)

if res.object is not None:
    # handle response
    pass

Server Selection

Select Server by Index

You can override the default server globally by passing a server index to the server_idx: int optional parameter when initializing the SDK client instance. The selected server will then be used as the default on the operations that use it. This table lists the indexes associated with the available servers:

# Server Variables
0 https://api.re-tell.ai None

Example

import sdk
from sdk.models import operations

s = sdk.SDK(
    server_idx=0,
    api_key="<YOUR_BEARER_TOKEN_HERE>",
)

req = operations.CreatePhoneCallRequestBody(
    phone_number=operations.PhoneNumber(
        from_='+14159095857',
        to='+14159095858',
    ),
)

res = s.create_phone_call(req)

if res.object is not None:
    # handle response
    pass

Override Server URL Per-Client

The default server can also be overridden globally by passing a URL to the server_url: str optional parameter when initializing the SDK client instance. For example:

import sdk
from sdk.models import operations

s = sdk.SDK(
    server_url="https://api.re-tell.ai",
    api_key="<YOUR_BEARER_TOKEN_HERE>",
)

req = operations.CreatePhoneCallRequestBody(
    phone_number=operations.PhoneNumber(
        from_='+14159095857',
        to='+14159095858',
    ),
)

res = s.create_phone_call(req)

if res.object is not None:
    # handle response
    pass

Custom HTTP Client

The Python SDK makes API calls using the requests HTTP library. In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with a custom requests.Session object.

For example, you could specify a header for every request that this sdk makes as follows:

import sdk
import requests

http_client = requests.Session()
http_client.headers.update({'x-custom-header': 'someValue'})
s = sdk.SDK(client: http_client)

Authentication

Per-Client Security Schemes

This SDK supports the following security scheme globally:

Name Type Scheme
api_key http HTTP Bearer

To authenticate with the API the api_key parameter must be set when initializing the SDK client instance. For example:

import sdk
from sdk.models import operations

s = sdk.SDK(
    api_key="<YOUR_BEARER_TOKEN_HERE>",
)

req = operations.CreatePhoneCallRequestBody(
    phone_number=operations.PhoneNumber(
        from_='+14159095857',
        to='+14159095858',
    ),
)

res = s.create_phone_call(req)

if res.object is not None:
    # handle response
    pass

Development

Maturity

This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage to a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally looking for the latest version.

Contributions

While we value open-source contributions to this SDK, this library is generated programmatically. Feel free to open a PR or a Github issue as a proof of concept and we'll do our best to include it in a future release!

SDK Created by Speakeasy

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

retell-0.5.1.tar.gz (25.7 kB view details)

Uploaded Source

Built Distribution

retell-0.5.1-py3-none-any.whl (45.3 kB view details)

Uploaded Python 3

File details

Details for the file retell-0.5.1.tar.gz.

File metadata

  • Download URL: retell-0.5.1.tar.gz
  • Upload date:
  • Size: 25.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.8.18

File hashes

Hashes for retell-0.5.1.tar.gz
Algorithm Hash digest
SHA256 e4b2d74445d1d55ccc43c435f69881897df84f56e37d5134843b31105c7e6bc0
MD5 f26b5a3a4a121c3d5647df3252c10893
BLAKE2b-256 6d6ea7cb28bbee01553e645fe24c6d60eb59b42aa1e46a4043aeef5c6aacfbaa

See more details on using hashes here.

File details

Details for the file retell-0.5.1-py3-none-any.whl.

File metadata

  • Download URL: retell-0.5.1-py3-none-any.whl
  • Upload date:
  • Size: 45.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.8.18

File hashes

Hashes for retell-0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b6849493904606f9bd4eb4696d9eefe5d53a09fdd328b0768a43cd72d2b0898e
MD5 8cefc1f12b980898d33d5bcbb36746a6
BLAKE2b-256 85179c2a4f75ded57d940a81623bc106031336650d0376ac6d29aad01da7640a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page