/
IMChannel: how to fetch Infobip parameters
IMChannel: how to fetch Infobip parameters
How to fetch existing Scenario Keys
status:GET https://xxxxxxx.api.infobip.com/omni/1/scenarios
status:AUTH Provide as BASIC AUTH a valid username and password for the account
The expected answer is similar to the following
{
"scenarios": [
{
"key": "F16AF5B911111111115DE2CAF0687",
"name": "PreShared",
"flow": [
{
"from": "4470000000",
"channel": "WHATSAPP"
}
],
"default": true
}
]
}
How to create a new Scenario Key
status:POST https://xxxxx.api.infobip.com/omni/1/scenarios
status:AUTH Provide as BASIC AUTH a valid username and password for the account
Payload to post
{
"name":"Name cliente",
"flow": [
{
"from": "441234560000",
"channel": "WHATSAPP"
}
],
"default": true
}
The telephone number is prefixed with the international country prefix without 00 or +
Expected answer
{
"scenarios": [
{
"key": "F16AF5B911111111115DE2CAF0687",
"name": "Name cliente",
"flow": [
{
"from": "4470000000",
"channel": "WHATSAPP"
}
],
"default": true
}
]
}
, multiple selections available,
Related content
Message compatibility table
Message compatibility table
Read with this
API reference
API reference
Read with this
Troubleshooting Guidelines
Troubleshooting Guidelines
Read with this
CTLive Manager
CTLive Manager
Read with this
webHook newContact
webHook newContact
Read with this
WhatsApp App Creation Guide
WhatsApp App Creation Guide
Read with this