Skip to content

KAZOO Support Channels

This documentation is curated by 2600Hz as part of the KAZOO open source project. Join our community forums here for peer support. Only features in the docs.2600hz.com/supported space are included as part of our 2600Hz Support Services plan.

Milliwatt-Config

Milliwatt Configuration#

Create a document (with milliwatt for id) in the system_config database.

Base Parameters#

echo
duration
This sets the duration of the echo action. The value is in milliseconds.   Sample Code:
duration: 5000
caller_id

This sets the caller ids of the echo action. It means that any call made from theses numbers (or users) will be redirected to Milliwatt echo action.   Sample Code:

caller_id: [4155555555, username]
number

This sets the number of the echo action. It means that any call made to these numbers will be redirected to Milliwatt echo action.   Sample Code:

number: [123456789,1011121314]

Sample Code

echo: {duration : 5000
   ,caller_id: [ 
    4155555555,username
    ],

number: [123456789]}
tone
frequencies

This sets the frequencies used for the tone action.   Sample Code

frequencies: [2600, 2300]
duration

This sets the duration of the tone action. The value is in milliseconds.   Sample Code

duration: 5000
caller_id
This sets the caller ids of the tone action. It means that any call made from theses numbers (or users) will be redirected to Milliwatt tone action.   Sample Code
caller_id: [4155555555, username]
number

This sets the number of the tone action. It means that any call made to these numbers will be redirected to Milliwatt tine action.   Sample Code

number: [
123456789,1011121314]

Sample Code

tone: {
frequencies: [2600] 
,duration: 5000
,caller_id: [4155555555
,username
]
,number: [123456789]
}

Sample Code:

{_id: milliwatt,default: {echo: {duration
: 5000
,caller_id: [username_echo ],

number: [5555555551]
  }
  ,tone: {frequencies:[2600]
  ,duration: 2000
  ,caller_id: [username_tone]
  ,number: [5555555552]
     }
   }
}