Would you like to display a different area code in your Kaisa number than the one you have on your phone number (the answering number)?
It can be done using the requested_ndc feature in our script.
All you will have to do is add this part to your Kaisa script:
'requested_ndc': 'e164 area code'
So it will look like this:
__fs_conf.push(['setAdv',{'id': 'xxxxxx-xxxx-xxxx-xxxx-xxxxxxxxx', 'requested_ndc': '4420'}]);
The example above will tell the script to use a local number for London.
To use this feature when replacing a number on a click, you will need to pass in the requested ndc in the advid field like so:
...,
'xxxxxx-xxxx-xxxx-xxxx-xxxxxxxxx;4420',
...
Comments
2 comments
We want to display another area code, but the script isn't chaning the number. We are using a 08-number (Sweden), but want to display a number that begins with 0771 instead.
Is this correct?
__fs_conf.push(['setAdv',{'id': 'xxxxxxxxx', 'requested_ndc': '46771'}]);
Hi Patrick,
Thank you for your question! It is possible to receive 0770 numbers instead of 0771. In order to receive these, you will have to use the following:
__fs_conf.push(['setAdv',{'id': 'xxxxxxxxx', 'requested_ndc': '4677'}]);
Feel free to reach out to us if anything is unclear!
/Frederik
Please sign in to leave a comment.