Speed Dial Import

Status
Not open for further replies.

gunemalli

New Member
Dec 18, 2018
24
3
3
Hi Guys,

Need some help with setting up speed dials for this one customer. He has about 50 odd numbers to be setup. What's easiest/fastest method of getting this done?

Kind Regards
 

Adrian Fretwell

Well-Known Member
Aug 13, 2017
1,414
376
83
There may be a better or easier way of doing this but it works for me.

Under Apps->Contacts there is an import option. You can specify a .csv file to upload and then you are offered field mapping options. If you want to add speed dial contacts, a minimal file may look something like this:
Code:
"Company A","01234546789","supplier","100","1","1","Work"
"Customer A","09876543210","customer","101","1","1","Work"
"Customer B","05432198765","customer","102","1","1","Work"

Then map the fields in the import file something like this:
Screenshot from 2019-03-13 13-41-53.png
In order for speed dial to work, a user must be allocated to the extension making the call and that user must have permission to access the contact record. In most cases it is sufficient to add the "users" group to the contact.

Screenshot from 2019-03-13 13-47-00.png

If you have imported a lot of contacts, it will be tedious to add the users group to them all one by one, so for this I use a simple sql insert.

SQL:
-- uuid of group users (In my case): 41ae078a-7042-4f4d-9d94-e361f612c245
-- uuid of domain we are playing with (In my case): 98e5a682-e6fc-4c00-a118-8bc7c2126bb4

-- as the pgsql installations does not have a uuid generator by default,
-- we can safely use the contact uuid as the contact group uuid.  Just check it doesn't already exist.
-- ensure that no contact group permissions exist for the domain

insert into v_contact_groups select contact_uuid, domain_uuid, contact_uuid, '41ae078a-7042-4f4d-9d94-e361f612c245' from v_contacts
where domain_uuid='98e5a682-e6fc-4c00-a118-8bc7c2126bb4'

I hope that is helpful,
Adrian.
 
  • Like
Reactions: gunemalli
Status
Not open for further replies.