// This is Generated Source. import GetConferencingInfoResponse from "../definitions/GetConferencingInfoResponse"; import UpdateConferencingInfoRequest from "../definitions/UpdateConferencingInfoRequest"; import PathSegment from "../PathSegment"; export default class Conferencing extends PathSegment { constructor(prv: PathSegment, id?: string, service?) { super("conferencing", id, prv, service); } /** *

Since 1.0.4 (Release 5.13)

Returns the information on the Free Conference Calling (FCC) feature for a given extension.

Required Permissions

PermissionDescription
ReadAccountsViewing user account info (including name, business name, address and phone number/account number)

Usage Plan Group

Light

*/ get(query?: GetQuery): Promise { return this._send({ body: undefined, ignoreId: true, method: "get", query: query, }).then((res) => { return res.json(); }); } /** *

Since 1.0.4 (Release 5.13)

Returns the information on the Free Conference Calling (FCC) feature for a given extension.

Required Permissions

PermissionDescription
ReadAccountsViewing user account info (including name, business name, address and phone number/account number)

Usage Plan Group

Light

* return {ApiResponse} */ getRaw(query?: GetQuery): Promise { return this._send({ body: undefined, ignoreId: true, method: "get", query: query, }); } /** *

Required Permissions

PermissionDescription
EditExtensionsViewing and updating my extension info (includes extension name, number, email and phone number)

Usage Plan Group

Medium

*/ put(body: UpdateConferencingInfoRequest): Promise { return this._send({ body: body, ignoreId: true, method: "put", query: undefined, }).then((res) => { return res.json(); }); } /** *

Required Permissions

PermissionDescription
EditExtensionsViewing and updating my extension info (includes extension name, number, email and phone number)

Usage Plan Group

Medium

* return {ApiResponse} */ putRaw(body: UpdateConferencingInfoRequest): Promise { return this._send({ body: body, ignoreId: true, method: "put", query: undefined, }); } } export interface GetQuery { /** * Internal identifier of a country. If not specified, the response is returned for the brand country */ countryId?: string; }