GET
/
v1
/
channels
/
{channelID}
/
conversational-components
Get conversational components (ice breakers, commands)
curl --request GET \
  --url https://api.wazapin.com/v1/channels/{channelID}/conversational-components \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "commands": [
      {
        "command_name": "<string>",
        "description": "<string>"
      }
    ],
    "enable_welcome_message": true,
    "prompts": [
      "<string>"
    ]
  }
}

Authorizations

Authorization
string
header
required

Session token or API key

Path Parameters

channelID
string
required

Channel ID

Response

OK

data
object
required