cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
544
Views
5
Helpful
3
Replies

data retrieved from external DB display on finese desktop page

jaheshkhan
Level 4
Level 4

I want to retrieve data from external Database based on calling number agent receive and display the data on finese agent destop page. Calling number will be there in the external database.

 

I already done with call variable layout. but Database multiple data records with same number. they want to display all those details on the agent desktop page.

 

I know how to retrieve data from external database. but dont know how to display that data on agent page while agent receive call?

Do I need to do it with gadget?

 

is there any other way?

 

Sample Database dataset: 

usernumbersexDateofbirthRegistrationnousernamePrimary
0573335555M17/02/19761234johnY
0573335555F18/03/19801235sallyN
0573335555M19/04/20001235MathewN
0573335555F20/05/20021235MayN
3 Replies 3

Is this what you're looking to do, to use ECC variables for instance and not just Peripheral Variables?

https://www.cisco.com/c/en/us/support/docs/contact-center/unified-contact-center-express/213873-configure-uccx-custom-call-variable-layo.html

This I already accomplished.

but in that I can only show main record of the data.

under same calling number there will be more number of records.

 

so in that case how ill display. here the challenge is that we dont know number of database records . it can 4 rows of data another may have 10 rows of data etc.

So we cannnot define call variables like that. it should display on another page and display from gadget.. This is what I understand.. if there is another way, its really helpful..

 

I have given a sample below:

 

usernumbersexDateofbirthRegistrationnousername
0573335555M17/02/19761234john
0573335555F18/03/19801235sally
0573335555M19/04/20001235Mathew
0573335555F20/05/20021235May

You absolutely need to do this as a gadget to trigger based on call arrival and some CTI data. This is probably your best starting point (https://github.com/CiscoDevNet/finesse-sample-code/tree/master/ExternalRestApiSampleGadget) You're going to have to have an API in front of the DB to make this all work.

 

david