// This is Generated Source. import ExtensionCallerIdInfo from "../definitions/ExtensionCallerIdInfo"; import PathSegment from "../PathSegment"; export default class CallerId extends PathSegment { constructor(prv: PathSegment, id?: string, service?) { super("caller-id", id, prv, service); } /** *
Since 1.0.28 (Release 8.4)
Returns information on an outbound caller ID of an extension.
| Permission | Description |
|---|---|
| ReadAccounts | Viewing user account info (including name, business name, address and phone number/account number) |
Light
*/ get(): PromiseSince 1.0.28 (Release 8.4)
Returns information on an outbound caller ID of an extension.
| Permission | Description |
|---|---|
| ReadAccounts | Viewing user account info (including name, business name, address and phone number/account number) |
Light
* return {ApiResponse} */ getRaw(): PromiseSince 1.0.28 (Release 8.4)
Updates outbound caller ID information of an extension.
| Permission | Description |
|---|---|
| EditExtensions | Viewing and updating my extension info (includes extension name, number, email and phone number) |
Medium
*/ put(body: ExtensionCallerIdInfo): PromiseSince 1.0.28 (Release 8.4)
Updates outbound caller ID information of an extension.
| Permission | Description |
|---|---|
| EditExtensions | Viewing and updating my extension info (includes extension name, number, email and phone number) |
Medium
* return {ApiResponse} */ putRaw(body: ExtensionCallerIdInfo): Promise