IMChannel - Infobip
How to fetch existing Scenario Keys
GET https://xxxxxxx.api.infobip.com/omni/1/scenarios
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
POST https://xxxxx.api.infobip.com/omni/1/scenarios
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
}
]
}
Â