@3cx/api
TypeScript icon, indicating that this package has built-in type declarations

0.0.36 • Public • Published

3CX Phone System API

This set of API provides an interface to 3CX Phone System. Only a limited amount of items is available but feel free to contact me for extending the list.

Available:

  • Reports
  • System status
  • Current user information
  • Extension, Group, Fax, Phonebook contents view

Getting started

Installation:

npm install @3cx/api --save

Usage

This is a sample on how to get system status information. Please supply your FQDN:port and access credentials.

import {createClient, ConsoleClient} from '@3cx/api';

async function main(){
    const http = await createClient('http://secure.3cx.my:5000', {Username: 'Admin', Password: '############'});
    const api = new ConsoleClient(http);

    console.log(await api.getSystemStatus());
}

main();

Samples

For samples please refer to https://github.com/sherlock1982/3cx-api-samples

Readme

Keywords

none

Package Sidebar

Install

npm i @3cx/api

Weekly Downloads

8

Version

0.0.36

License

MIT

Unpacked Size

102 kB

Total Files

210

Last publish

Collaborators

  • sherlock1982