How to
...
fetch existing Scenario Keys
https://xxxxxxx.api.infobip.com/omni/1/scenarios Provide as BASIC AUTH a valid username and password for the accountThe expected answer is similar to the following
Code Block |
---|
{
"scenarios": [
{
"key": "F16AF5B911111111115DE2CAF0687",
"name": "PreShared",
"flow": [
{
"from": "4470000000",
"channel": "WHATSAPP"
}
],
"default": true
}
]
}
|
How to
...
create a new Scenario Key
https://xxxxx.api.infobip.com/omni/1/scenarios Provide as BASIC AUTH a valid username and password for the accountPayload to post
Code Block |
---|
{
"name":"Name cliente",
"flow": [
{
"from": "441234560000",
"channel": "WHATSAPP"
}
],
"default": true
}
|
...