Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Get agent status from ASAI

Status
Not open for further replies.

juanctellez

IS-IT--Management
Jun 20, 2002
6
US
when I take a call with adjunct, I use the DTMFDigits in order to identify the agent that I have to route the call... (according with the history file of my calls, i want to route to the last agent whom attend my customer) but I dont know how to know the agent status in order to decide if I can route the call directly to the agent or if I have to route to the skill?

thanks a lot.
 
Use the Agent Status Value Query request:

vq_agt_stat_t* req = new vq_agt_stat_t;
req->asai_common.capability = C_VQ_REQ;
req->asai_common.primitive_type = C_REQUEST;
req->vq_item = C_AGT_STAT;
req->split_ext = "0000";
req->agt_ext = "1234";

Kind Regards

René Bechmann
RBC Data
rene@rbcdata.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top