I have been digging in the DocuSign Connect documentation and can't seem to find anything. I am wondering if there is a way to send out a Connect event when a recipient has viewed the DocuSign document. Thank you in advanced!
Yes, the Recipient: Delivered status will fire the first time a particular signer views an envelope. Note that you can only track the first time a recipient views the envelope - further events won't fire if the user views the envelope multiple times.
More information is available in the Connect guide: https://docs.docusign.com/supportdocs/ndse-admin-guide/Content/custom-connect-configuration.htm
Related
I was asked by a potential client if I can have my software interact with Esri/ArcGIS Online.
Use case: users is logged into SomeRandomSoftwareApp and is looking at a Widget, this Widget includes an Esri asset id, the user clicks a link that passes that ID to Esri/ArcGIS Online and behind the scenes the user is logged into Esri and they see the data associated with the Esri/ArcGIS Online.
Thanks, Keith
If I understand correctly, you have two options for this: API Keys or Application Credentials.
The first one, is a permanent token generated by the owner of the data that will allow the application easy access to it. This is still in beta, and it was not ready for use the last time I check some time ago.
The second one, the owner of the data will generate credentials for your application. With this credentials you will have to request a token each time you want to access the data, all this via OAuth 2.0.
Check the docs for more details ArcGIS Services - Security
I have a social media app written in Flutter. Users can see the profiles each other and block/unblock them. I'm using MySQL to keep that data. Now I want to implement chat feature using Firebase Firestore (or maybe MongoDB). When a user sends a message to another user, should I check if user blocked another user from MySQL every time, so user can't send new message. Is this a good practice in chat application, or should I store the "blocked" data at Firebase also.
I researched this subject deeply but didn't find any solution.
Like when user is trying to send a message to another user so in the list of the recipients you are also retrieving the value for (is particular user is blocked by the current user), if it's so you are checking this on that time.
Secondly, if you want this to check when sending to server. So, you can manage this using firestore transaction in which you might get the object of the sender and check to whom the sender has blocked and you may throw an exception. The other thing you might manage it using Firestore Security Rules as well.
So you can code like most of the current social media works.
Simply let the user send a message but put a condition on the receiver
user side so if the user is blocked by the receiver then it should not show
the chat in the user chat list also should not send a notification if the user
is blocked by the receiver.
I need to send offline event via measurment protocol for one of my clients but I encountered an issue.
There have to be userID included in the hit because client want new event to be paired to original online lead event.
I have analytics data view with User ID. There are not any issues. I Can see all the events with user id defined.
However I cannot properly send hit with offline conversion
I tried this:
/collect?v=1&t=event&tid=UA-91553515-1&uid=2cccaee4ea292182&ec=poptavka&ea=smlouva
but when I checked in GA Live view nothing happened
I also tried this
/collect?v=1&t=event&tid=UA-91553515-1&cid=edf3b897-a9ea-4d4e-b12e-8c9ff0d1b510&uid=2cccaee4ea292182&ec=poptavka&ea=smlouva
In this case event appeared in live view and overview later but there is no user id assigned :(
Can somebody help me please?
Thank you
I'm making a Hangouts chatbot for my company, and one of the things we need to do is retrieve a user's email address. The API guide says that chatbot should be able to access this information without any additional permissions or API's, but I can't find out how to do it. I can get the user object from the event, but from that I can only get displayName.
Thanks
It turns out you can access an email with event.user.email
Doesn't say that anywhere in the documentation but whatever...
I need to get the user email when I get document permissions. I have seen this problem here
value attribute for Permissions Resource not populated in responses
but in about service does not appear my email. I need it because I have a service account and my application need know the user email. I want to avoid call to profile service.
Is this possible? from where I can get the user email?
Thanks.
As you rightly say, you will have to make a call to the profile service. In some ways it is better like this, because it separates the concerns of the Drive API and the Profile API, and can use specific scoping to let the user know exactly what they are authorizing your app to do.