Log In
Developer Network
Technologies
Join the Network
Member Services
Events & Community
Finesse Developer Center
Overview
Documentation
Community
Blogs
Cisco Live Update
Theodore Phipps
17 May 2013
"Installing" the Finesse CUIC sample gadget
David Lender
16 Apr 2013
Getting Started with Finesse Gadgets
David Lender
16 Apr 2013
SampleGadget_WebService posted
David Lender
27 Mar 2013
SampleGadget_Logging gadget posted
David Lender
26 Feb 2013
Showing 1 - 5 of 22 results.
Items per Page 5
Page
(Changing the value of this field will reload the page.)
1
2
3
4
5
of 5
First
Previous
Next
Last
Forums
Message Boards Home
Recent Posts
Statistics
Answer
(
Unmark
)
Mark as an Answer
« Back to General Questions
Can a User be part of more than 1 team?
Threads [
Previous
|
Next
]
Absaar Javed
Posts:
18
Join Date:
1/14/13
Recent Posts
Can a User be part of more than 1 team?
Answer
3/8/13 11:29 AM
Mark as an Answer
Submit
Reply with Quote
Quick Reply
Can a user be the part of more than one teams?
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
David Lender
Posts:
170
Join Date:
4/4/08
Recent Posts
RE: New Message from Absaar Javed in Cisco Finesse - General Questions: RE:
Answer
3/8/13 3:18 PM as a reply to Absaar Javed.
Mark as an Answer
Submit
Reply with Quote
Quick Reply
A user (agent) can NOT be part of more than one team.
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
Absaar Javed
Posts:
18
Join Date:
1/14/13
Recent Posts
RE: New Message from Absaar Javed in Cisco Finesse - General Questions: RE:
Answer
3/11/13 6:30 AM as a reply to David Lender.
Mark as an Answer
Submit
Reply with Quote
Quick Reply
There is a function in finesse.js,
/**
* Getter for the team id.
* @returns {String} The team id.
*/
getId: function () {
this.isLoaded();
return this.getData().id;
},
how can I access this method?
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
David Lender
Posts:
170
Join Date:
4/4/08
Recent Posts
RE: New Message from Absaar Javed in Cisco Finesse - General Questions: RE:
Answer
3/11/13 2:47 PM as a reply to Absaar Javed.
Mark as an Answer
Submit
Reply with Quote
Quick Reply
From the SampleGadget_Final that comes with the Finessse javascript library, here is an example:
document.getElementById('userId').innerHTML = user.getId();
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
Absaar Javed
Posts:
18
Join Date:
1/14/13
Recent Posts
RE: Cisco Interaction Manager in finesse desktop container as a gadget
Answer
3/12/13 5:45 AM as a reply to David Lender.
Mark as an Answer
Submit
Reply with Quote
Quick Reply
Thanx David, but this will give me the userID i.e the ID user is logged in with, on the other hand I need to get the team ID of the user, functions name are same but they are definitely not going to be called via same object, so I need help with the object using which I can access getId() corresponding to teamId of a user.
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
Absaar Javed
Posts:
18
Join Date:
1/14/13
Recent Posts
RE: Cisco Interaction Manager in finesse desktop container as a gadget
Answer
3/12/13 7:49 AM as a reply to Absaar Javed.
Mark as an Answer
Submit
Reply with Quote
Quick Reply
Plus there is an API in finesse 9.1.1 "Dialog - Make a consult call request", its URI is "http://<server>/finesse/api/Dialog/<dialogId>", now if we have to make a consult call to one of the users from a given list, how do we get the "dialogId" of that user whom we want to transfer our call, inorder to complete the above API's URI.(the person transfering call is a non-administrator user).
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
David Lender
Posts:
170
Join Date:
4/4/08
Recent Posts
RE: New Message from Absaar Javed in Cisco Finesse - General Questions: RE:
Answer
3/12/13 2:04 PM as a reply to Absaar Javed.
Mark as an Answer
Submit
Reply with Quote
Quick Reply
The Finesse javascript library does not contain a function to get the teamid of a user, even though teamid is part of the WebServices API.
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
David Lender
Posts:
170
Join Date:
4/4/08
Recent Posts
RE: New Message from Absaar Javed in Cisco Finesse - General Questions: RE:
Answer
3/12/13 2:07 PM as a reply to Absaar Javed.
Mark as an Answer
Submit
Reply with Quote
Quick Reply
You do not use the dialogId of the user to make the consult call request to. You specify the media address of the destination.
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
Absaar Javed
Posts:
18
Join Date:
1/14/13
Recent Posts
RE: Can a User be part of more than 1 team?
Answer
3/20/13 1:51 PM as a reply to David Lender.
Mark as an Answer
Submit
Reply with Quote
Quick Reply
With refrence to CISCO Finesse Web Services Guide for Release 9.1(1), page number 67, in "Dialog - Initiate Single Step Transfer" API, "Therefore, the dialogId in the URL represents the Dialog ID of the active call."
URL is as follows : http://<server>/finesse/api/Dialog/<dialogId>
How can I get the value of this "dialogId" inorder to fire the corresponding http PUT request?
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
David Lender
Posts:
170
Join Date:
4/4/08
Recent Posts
RE: New Message from Absaar Javed in Cisco Finesse - General Questions: RE:
Answer
3/20/13 2:13 PM as a reply to Absaar Javed.
Mark as an Answer
Submit
Reply with Quote
Quick Reply
You should receive a list of dialogs which contains the dialog object in the XMPP message which contains the uri which has the dialog ID
See the Chapter on Cisco Finesse Notifications in the Cisco Finesse Web Services Guide. You will receive a Dialog notification when something changes to the User’s list of dialogs.
(When they login, each agent is automatically subscribed to the following notification feeds, where {id} represents the agent
ID for that agent:
• User - /finesse/api/User/{id}
• Dialogs - /finesse/api/User/{id}/Dialogs
From the Dialog object (see Dialog – Get Dialog) there is a uri
<Dialog>
<uri>/finesse/api/Dialog/12345678</uri>
…
</Dialog>
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
Absaar Javed
Posts:
18
Join Date:
1/14/13
Recent Posts
RE: Can a User be part of more than 1 team?
Answer
4/2/13 9:32 AM as a reply to David Lender.
Mark as an Answer
Submit
Reply with Quote
Quick Reply
In finesse 9.1(1) can a supervisor supervise more than one teams?
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
Theodore Phipps
Posts:
49
Join Date:
4/2/08
Recent Posts
RE: Can a User be part of more than 1 team?
Answer
4/3/13 5:57 PM as a reply to Absaar Javed.
Mark as an Answer
Submit
Reply with Quote
Quick Reply
Yes. they should be added as supervisors to multiple teams in CCE, and then the drop-down team selector in the Team Performance gadget will show the teams that they can supervise.
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
Absaar Javed
Posts:
18
Join Date:
1/14/13
Recent Posts
RE: Can a User be part of more than 1 team?
Answer
4/10/13 6:56 AM as a reply to Theodore Phipps.
Mark as an Answer
Submit
Reply with Quote
Quick Reply
In finesse 9.1.1 web services API's, "User - Get List of Dialogs Associated With User" API says in its security constraints that:
{ Role: Agent, Administrator
Limitations: Administrators can get a list of dialogs associated with any user. Agents can only get a list of their own dialogs.
}
Now, I am trying to access the dialogs of a user(Agent) by using the authentication credentials of an other user which is supervisor, but I am getting 401 error for that. Need some help to figure out what is wrong,
aren't the supervisor and administrator accounts same?
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
David Lender
Posts:
170
Join Date:
4/4/08
Recent Posts
RE: New Message from Absaar Javed in Finesse - General Questions: RE: Can a
Answer
4/10/13 4:35 PM as a reply to Absaar Javed.
Mark as an Answer
Submit
Reply with Quote
Quick Reply
You can get the dialogs for a user (agent) by using the authentication credentials of an Administrator, not a Supervisor.
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
Absaar Javed
Posts:
18
Join Date:
1/14/13
Recent Posts
RE: Can a User be part of more than 1 team?
Answer
4/11/13 2:02 PM as a reply to David Lender.
Mark as an Answer
Submit
Reply with Quote
Quick Reply
Can an Administrator subscribe to the dialogs of users(agents/supervisors) via open AJAX hub so that administrator can receive all the dialogs of users he/she is subscribed to? as I am able to get the dialogs of users with administrator credentials but I am still unable to subscribe to users' dialog using administrator credentials via pubsub' I am using pidgin & poster for testing'
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
David Lender
Posts:
170
Join Date:
4/4/08
Recent Posts
RE: New Message from Absaar Javed in Finesse - General Questions: RE: Can a
Answer
4/11/13 6:00 PM as a reply to Absaar Javed.
Mark as an Answer
Submit
Reply with Quote
Quick Reply
The concept of administrator as super user is not currently supported.
From: Cisco Developer Community Forums [mailto:cdicuser@developer.cisco.com]
Sent: Thursday, April 11, 2013 9:45 AM
To: cdicuser@developer.cisco.com
Subject: New Message from Absaar Javed in Finesse - General Questions: RE: Can a User be part of more than 1 team?
Absaar Javed has created a new message in the forum "General Questions": -------------------------------------------------------------- Can an Administrator subscribe to the dialogs of users(agents/supervisors) via open AJAX hub so that administrato can receive all the dialogs of users he/she is subscribed to? as I am able to access the dialogs of users with administrator credentials but I am still unable to subscribe to users' dialog using administrator credentials.
--
To respond to this post, please click the following link: http://developer.cisco.com/web/finesse/community/-/message_boards/view_message/14155492 or simply reply to this email.
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
Collateral
No files available