ringcentral

Creator: coderz1093

Last updated:

0 purchases

ringcentral Image
ringcentral Images
Add to Cart

Description:

ringcentral

RingCentral Dart SDK. #
It provides utility classes/functions for you to access RingCentral Restful API.
Features #

Authorization
HTTP GET/POST/PUT/PATCH/DELETE

Getting started #
Add ringcentral to your pubspec.yaml file:
dependencies:
ringcentral: <latest_version>
copied to clipboard
Import it:
import 'package:ringcentral/ringcentral.dart';
copied to clipboard
Usage #
var rc = RingCentral(
server: env['RINGCENTRAL_SERVER_URL']!,
clientId: env['RINGCENTRAL_CLIENT_ID'],
clientSecret: env['RINGCENTRAL_CLIENT_SECRET'],
);
await rc.authorize(
username: env['RINGCENTRAL_USERNAME']!,
extension: env['RINGCENTRAL_EXTENSION'],
password: env['RINGCENTRAL_PASSWORD']!,
);
var r = await rc.get(endpoint: '/restapi/v1.0/account/~/extension/~');
print(r.body);
copied to clipboard
Additional information #
This library is current in beta. Please evaluate the risk before using it in production.
For contributors #
How to test #
dart test
copied to clipboard
How to publish #
dart pub publish
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.

Related Products

More From This Creator