From Genesys Documentation
api.session.getData
Learn how to obtain the data such as the short ID for a particular customer's session.
Description
api.session.getData returns an object that contains the session Id, short Id, and customer cookie Id.
Signature
ac('api.session.getData', (err, sessionInfo) => {
if (err) {
// handle error
return;
}
return sessionInfo;
});
Example
The following is an example of an object that is returned by api.session.getData:
{
id: <uuid>
shortId: 12345
customerCookieId: <uuid>
}
Callback
The callback takes err as the first parameter.
Comments or questions about this documentation? Contact us for support!