Chatbot Action
  • 09 Jan 2023
  • 1 Minute to read
  • Dark
    Light

Chatbot Action

  • Dark
    Light

Article summary

Chatbot Action

Update a Chatbot Action Content

PUT bot/chatbotActions/{chatbotActionId}/content

  • Parameters:

NameTypeinRequiredDescription
idguidbodyyesId of the chatbot action.
messagestringbodyyesmessage of the chatbot action.
imageUrlstringbodynoimage url.
videoUrlstringbodynovideo url.
  • Response:

HTTP/1.1 200 OK

  • Example

Sample Request:

curl https://api11.comm100.io/v4/bot/chatbotActions/520dc2fb-1d91-4812-838e-e3f12a7bf541/content \ 
    -X 'PUT' \ 
    -H 'Authorization: Bearer {access_token}' \ 
    -H 'Content-Type: application/json' \ 
    -D '{
        "id": "520dc2fb-1d91-4812-838e-e3f12a7bf541",
        "message": "message update 1",
        "imageUrl": ""
        }' 

Response:

HTTP/1.1 200 OK


Was this article helpful?