提供: Bright Pattern Documentation
• 日本語

Revision as of 10:11, 21 September 2026 by BpDeeplTranslateMaintenance (talk | contribs) (Updated via BpDeeplTranslate extension)

< 前へ | 次へ >
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
移動先: 案内検索
• English

sendDtmf

デュアルトーン多周波数(DTMF)信号を使用して、指定された番号のシーケンスを通話受信者に送信します。

リクエスト

構文

sendDtmf(dtmf: string, interactionId?: string): Promise<OperationResult<null>>


パラメータ

パラメータ パラメータの値 データ型 オプション/必須 説明
dtmf 文字列 必須 DTMF 番号シーケンス(つまり、数字の文字列)です。
interactionId 文字列 オプション このアクションが適用されるインタラクションのidです。特定されていない場合は、アクティブなインタラクションが使用されます。

リクエスト例

    sendDtmfButton.onclick = () => {

        const dtmf = dtmfInput.値

const itemId = activeInteractionIdInput.値

adApi.sendDtmf(dtmf, itemId)

}

戻り値

null

< 前へ | 次へ >