clearning overflow not doing anything
Posted: 22 Mar 2019 06:11
I'm testing the routing again in release 29.
I'm starting out with this state
Then I'm sending a DELETE http://srvroxe01.nxodev.intra/api/rest/ ... me=oxe7890. I get a 204 response back, so Im assuming all is well.
However, if I make a subsequent GET http://srvroxe01.nxodev.intra/api/rest/ ... me=oxe7890, I'm seeing the exact same values returned again. I would expect the overflow route to be cleared
I would expect a subsequent get of the routing state to not have an overflow route anymore, yet
I'm starting out with this state
Code: Select all
{
"presentationRoutes": [
{
"destinations": [
{
"type": "OFFICE",
"selected": true
}
]
}
],
"forwardRoutes": [
{
"forwardType": "NO_ANSWER",
"destinations": [
{
"type": "VOICEMAIL"
}
]
}
],
"overflowRoutes": [
{
"overflowType": "NO_ANSWER",
"destinations": [
{
"type": "NUMBER",
"number": "1004"
}
]
}
],
"dndState": {
"activate": false
}
}However, if I make a subsequent GET http://srvroxe01.nxodev.intra/api/rest/ ... me=oxe7890, I'm seeing the exact same values returned again. I would expect the overflow route to be cleared
I would expect a subsequent get of the routing state to not have an overflow route anymore, yet