提供: 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

updateNote

指定されたインタラクションの最後のメモを更新します。このメソッドは、最後のメモ以外のメモを変更することはありません。interactionId が特定されていない場合、このメソッドは現在アクティブなインタラクションのメモを設定します。

リクエスト

構文

updateNote(note: string, interactionId?: string): Promise<OPERATIONRESULT<null>>

パラメータ

パラメータ パラメータ値 データ型 オプション/必須 説明
文字列 必須 そのインタラクションについて更新したいメモです。
interactionId 文字列 オプション 更新されたノートが適用されるインタラクションの固有のインタラクション id です。

リクエスト例

    updateNoteButton.onclick = () => {

const note = noteInput.値

const itemId = notesInteractionIdInput.値

adApi.updateNote(note, itemId)

}

戻り値

null

< 前へ | 次へ >