" /> Recent Posts

Recent Posts

Pages: 1 ... 5 6 [7] 8 9 10
61
According to my experience and available documentation, this is not possible at this moment. You have to call multiple APIs to get such information.
62
Genesys CTI Technical Discussion / Getting Total Trunks with Genesys API
« Last post by victor on August 28, 2024, 03:35:14 AM »
Is there a simple way to get the count of active trunks using API?

I would imagine something like this:


```
import requests

url = "https://api.mypurecloud.com/api/v2/telephony/providers/edges/trunks"
headers = {
    "Authorization": "Bearer MY_SUPER_SECRET_TOKEN",
    "Content-Type": "application/json"
}

response = requests.get(url, headers=headers)
trunks = response.json().get("entities", [])

# Count the number of trunks that are connected
active_trunks = sum(1 for trunk in trunks if trunk.get("connectedStatus") == "connected")

print(f"Total number of active trunks: {active_trunks}")
```

But for the life of me, this does not give me what I want. Where am I going wrong? (Other than the use of "sum" and "for" together - don't kill me :) )

63
Hi,

can you please tell me if there is a way to retrieve queues for a group of agents in one API request? I would like to create a list of agents and show attributes for all of them in one table. Is there a way to retrieve queues for each agent in one big API request? I do not see a straight-forward way to do it, and having trouble accepting Genesys, designed for very large deployments, would not have some way to retrieve information about large number of objects in one API request. Help!
64
For that you can hire someone to act as a consultant. There are many topics on this and scenarios. Also, it is not a good thing to disclosure such complex topic on a forum. We can discuss ideas or issues you may have, but with your input. What you ask for is a project.

Enviado de meu SM-S918B usando o Tapatalk

65
Our organization is looking to enhance customer satisfaction by implementing a robust self-service IVR system. We're currently using [Genesys product, if applicable].

We're seeking advice on:

Best practices for IVR menu design and navigation
Effective use of speech recognition and natural language processing
Strategies for handling complex customer inquiries
Integration with CRM systems for personalized interactions
Metrics to measure [url=https://www.fonada.com/office-ivr-solutions/]IVR[/url] performance and customer satisfaction
We're interested in learning from other organizations' experiences and challenges. Any insights or recommendations would be greatly appreciated.
66
Genesys CTI Technical Discussion / reroouting the calls using triggers / data actions
« Last post by victor on August 07, 2024, 03:27:35 AM »
Hi, 

I have been working on using triggers to detect outbound calls that do not contain a queue. Loves triggers - it made things so much easier. Having said that, since there is no way to control the call within the trigger or in the workflow it calls, I was thinking about using data actions to redirect any outbound calls that lack the queue to an announcement stating to select a queue prior to dialing. Has anyone done call rerouting using triggers / data actions? Is there a simpler way to implement it?  I was able to do it pretty easily by a python code using API to monitor the calls and reroute them, but cannot figure a way to do it within Genesys. 
67
Genesys CTI Technical Discussion / Re: History of deleted agents
« Last post by gerang on July 18, 2024, 03:09:46 PM »
Hi hsujdik (or Jush ?) how are you ?

Thank you for your answer, I confirm this is exactly what we needed :)

Regards, Gerang
68
Genesys CTI Technical Discussion / Re: History of deleted agents
« Last post by hsujdik on July 17, 2024, 08:34:11 PM »
Hi, gerang,

If you have Genesys Info Mart, you can check the table "GIDB_GC_AGENT" where STATE = 2 (which means disabled)
On that table, you will have a column called LastChange, which informs when the last change was done to that agent.
69
Genesys CTI Technical Discussion / Re: History of deleted agents
« Last post by gerang on July 17, 2024, 01:22:43 PM »
Hi, sorry for upping that very old subject. We are using Genesys 8.5 and we are used to disable agents that are gone, mainly for reactivation if they come back or for historical reporting. We now have lots of disabled agents and we are wondering how we could delete agents disabled since 2 years ago for example. All agents are not in our WFM and no log are archived so long so do you know if it is possible in database or another way to get that information ?

Regards, Gerang
70
As people in the Genesys world, you must have heard that Genesys announced withdrawing support from on premise applications as of 31.12.2028. Instead, he recommends that we make plans to move to the cloud. First of all, from what I heard from the field, there were a lot of negative comments about this decision. Does Genesys really think that it will not lose customers with this decision or is it taking action considering this loss? I work in the finance sector, so we are far from the idea of ​​moving to the Cloud.  I am researching what alternative solution we can use. Genesys really consists of many layers and architectures. It is not that easy to analyze, cost, develop and replace in-house applications. Do you have any plans to cancel this decision of Genesys or postpone it for a few more years beyond 2028? I am examining open source CTI applications, especially Asterisk. I am researching whether they are strong and flexible enough to replace Genesys. If you are in a similar situation to me, I expect you to brainstorm together and share your ideas.
Pages: 1 ... 5 6 [7] 8 9 10