This is a python wrapper for the 3CX API. It is designed to make it easier to interact with the 3CX API. It is a work in progress and is not yet feature complete. It is designed to be used with the official 3CX v20 API.
Project description
3CX API Python Module
Description
This is a python wrapper for the 3CX API. It is designed to make it easier to interact with the 3CX API. It is a work in progress and is not yet feature complete. It is designed to be used with the official 3CX v20 API.
:warning: Notice This package is not affiliated with 3CX. It is an unofficial package that is designed to make it easier to interact with the 3CX API.
3CX API Compatibility
The 3CX API can change at any time. They do provide a swagger file. The following table works to show compatibility between this package and the 3CX and swagger reported versions.
| Package Version | 3CX Version | OpenAPI Version |
|---|---|---|
| 1.0.6 | Version 20.0 Update 6 + | 3.0.4 |
| < 1.0.6 | < Version 20.0 Update 6 | 3.0.0 |
Supported Endpoints
Objects are created for almost every endpoint, response, exception, etc from the swagger provided by 3CX. The following endpoints are fully implemented into a resource that makes it easier to perform actions on them. Other endpoints can be accessed but must be done so manually with the ThreeCXApiConnection object.
Supported Endpoints:
- Users
- Groups
- Trunks
- Peers
Feel free to read the provided swagger.yaml or pull your own swagger from your own 3CX installation to see what is available.
Installation
python3 -m pip install threecxapi
Example Usage
Connection
from threecxapi.connection import ThreeCXApiConnection
# Build Connection
api_connection = ThreeCXApiConnection(server_url=app_config.server_url)
api_connection.authenticate(
username="username",
password="password",
)
Users
from threecxapi.resources.users import UsersResource, ListUserParameters
from threecxapi.resources.exceptions.users_exceptions import UserListError
# Get Users
users_resource = UsersResource(api=api_connection)
try:
user_collection_response = self.users_resource.list_user(
params=ListUserParameters(
expand="Groups($expand=Rights,GroupRights),ForwardingProfiles,ForwardingExceptions,Phones,Greetings"
)
)
users = user_collection_response.users
except UserListError as e:
print(e)
Direct calls to API
# Import an object from here:
# from threecxapi.components.schemas.pbx import MyObject
response = api_connection.get(
endpoint="SomeEndpoint/123",
)
api_connection.patch(
endpoint="SomeEndpoint/123",
data=MyObject.to_dict(),
)
api_connection.delete(
endpoint="SomeEndpoint/123",
)
Type Conversions
# All objects use pydantic BaseModel so you can use TypeAdapter to convert responses to the appropriate objects like so:
from pydantic import TypeAdapter
from threecxapi.components.schemas.pbx import MyObject
response = api_connection.get(
endpoint="SomeEndpoint/123",
)
TypeAdapter(MyObject).validate_python(response.json())
# Note that List endpoints will return a CollectionResponse found in from threecxapi.components.responses.pbx
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file threecxapi-1.0.6.tar.gz.
File metadata
- Download URL: threecxapi-1.0.6.tar.gz
- Upload date:
- Size: 265.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bff3a037de5803e226ca4f67bdaa59195fa0208e88e3093319d6ca00c0a5ec56
|
|
| MD5 |
23f2f7264edeb4174617ecf5972b6101
|
|
| BLAKE2b-256 |
24b3ff266a5b49fd25e987067a55b36354935ab6c426222366ad0680241ce58c
|
File details
Details for the file threecxapi-1.0.6-py3-none-any.whl.
File metadata
- Download URL: threecxapi-1.0.6-py3-none-any.whl
- Upload date:
- Size: 70.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36315c0514932ada7145a241e73096108b0abc9bd08c7bd80946e1a59c676fe7
|
|
| MD5 |
f233d299d332f83a0ab68ff8ec963fa4
|
|
| BLAKE2b-256 |
414bd146faba0026fc5ce2a81cfeeb73a79368a3e67729f695e3574a2fdb5baa
|