Accessing Username of Requestor
You can access information about the requesting user from within the doLookup, onDetails, and onMessage hooks.
If you want to access the username
or id
of the requesting user from within the doLookup
onDetails
or onMessage
method you can easily do this by accessing the _request
property on the options
variable passed into the respective method. The _request
property contains a user
object which includes a username
and id
property.
The structure of the _request
property is as follows
doLookup Example
Here is an example for how you would access the username
and id
of the requesting user from within the doLookup
method.
integration.js
onDetails Example
integration.js
onMessage Example
integration.js
Last updated