// This is Generated Source. import IIvrPrompts from "../definitions/IvrPrompts"; import PromptInfo from "../definitions/PromptInfo"; import PathSegment from "../PathSegment"; import Content from "./Content"; export default class IvrPrompts extends PathSegment { constructor(prv: PathSegment, id?: string, service?) { super("ivr-prompts", id, prv, service); } /** * Internal identifier of a message attachment */ content(id?: string) { return new Content(this, id); } /** *
Since 1.0.32 (Release 9.3)
Returns a list of IVR prompts.
| Permission | Description |
|---|---|
| ReadAccounts | Viewing user account info (including name, business name, address and phone number/account number) |
Medium
*/ list(): PromiseSince 1.0.32 (Release 9.3)
Returns a list of IVR prompts.
| Permission | Description |
|---|---|
| ReadAccounts | Viewing user account info (including name, business name, address and phone number/account number) |
Medium
* return {ApiResponse} */ listRaw(): PromiseSince 1.0.32 (Release 9.3)
Returns an IVR prompt by ID
| Permission | Description |
|---|---|
| ReadAccounts | Viewing user account info (including name, business name, address and phone number/account number) |
Medium
*/ get(): PromiseSince 1.0.32 (Release 9.3)
Returns an IVR prompt by ID
| Permission | Description |
|---|---|
| ReadAccounts | Viewing user account info (including name, business name, address and phone number/account number) |
Medium
* return {ApiResponse} */ getRaw(): PromiseSince 1.0.32 (Release 9.3)
Deletes an IVR prompt by ID
| Permission | Description |
|---|---|
| EditAccounts | Viewing user account info (including name, business name, address and phone number/account number) |
Heavy
*/ delete(): PromiseSince 1.0.32 (Release 9.3)
Deletes an IVR prompt by ID
| Permission | Description |
|---|---|
| EditAccounts | Viewing user account info (including name, business name, address and phone number/account number) |
Heavy
* return {ApiResponse} */ deleteRaw(): Promise