メインコンテンツへスキップ
POST
/
call
/
update
呼び出しの更新
curl --request POST \
  --url https://api.example.com/call/update \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "project_id": "<string>",
  "call_id": "<string>",
  "display_name": "<string>",
  "wb_user_id": "<string>"
}
'
{}

承認

Authorization
string
header
必須

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

ボディ

application/json
project_id
string
必須
call_id
string
必須
display_name
string | null
wb_user_id
string | null

直接設定しないでください。サーバーがこのフィールドを自動的に設定します。

レスポンス

成功時のレスポンス

The response is of type CallUpdateRes · object.