Revision as of 14:25, March 31, 2015 by Alison.obrien (talk | contribs) (Screen Recording Decrypt Uri Prefix)
Jump to: navigation, search

Web Services Setting Groups

This section provides more information about the settings groups that Web Services uses for Genesys Interaction Recording, so that you can maintain these settings groups after deployment. These settings groups are configured using the API.

Screen Recording Storage Settings

Web Services provides location-based storage settings so that the Web Services node can access external storage. The following example shows how to create the storage settings with the properties described in the table below:

POST http://<htcc-cluster-address>/api/v2/settings/screen-recording

{
    "name":"storage",
    "location": "/US/CA/",
    "value":[
        {
            "storageType": "webDAV",
            "active": true,
            "credential": 
            {
                "userName": "user",
                "password": "pass",
                "storagePath": "http://<IP Address>:<Port>/webdav"
            }
        },
        {
            "storageType": "awsS3",
            "active": false,
            "credential": 
            {
                "accesskey": "AAAAASAJKSJKAJSK",
                "securitykey": "AAAAKSJKSJDKEWUIFHSJKS",
                "bucket": "screenrecording_usca"
            }
        }
    ]
}
Property Description
storageType The storage location. If set to webDAV, the recordings are stored on the physical server. If set to awsS3, the recordings are stored in the cloud.
active Determines whether the storage location is enabled and available to store the recordings. If set to true, the storage location is enabled.
credential If the storageType is set to webDav, you must also provide the following parameters:
  • userName—The user that has access to the WebDAV storage location.
  • password—The password for the WebDAV storage location.
  • storagePath—The URL of the WebDAV storage location.

If the storageType is set to awsS3, you must also provide the following parameters:

  • accesskey
  • securitykey
  • bucket

Screen Recording Decrypt Uri Prefix

Web Services defers the decryption process of screen recordings to the Recording Crypto Server. Web Services provides a URI that directs the SpeechMiner application to the Recording Crypto Server for the decrypted screen recording, and for the mediaUri member in a Get Screen Recording Meta-Data response. The following example shows how to create the decryption URI prefix settings. Note that the value must be set to the URL of the Recording Crypto Server instance.

POST http://<htcc-cluster-address>/api/v2/settings/screen-recording

{
    "name":"decrypt-uri-prefix",
    "location": "/US/CA/",
    "value":"https://<IP Address>/rcs"
}


SpeechMiner Settings for MLM Purge

During the call recording purge, Web Services issue the call recording purge request to SpeechMiner for the corresponding records on the SpeechMiner database. The Web Services node that executes the purge, determines the SpeechMiner API URI prefix and the credentials based on the SpeechMiner group setting with the location-based interaction-receiver settings. The following example shows how to create the Interaction Receiver settings


POST http://<htcc-cluster-address>/api/v2/settings/speechminer

{
    "name":"interaction-receiver",
    "location": "/US/CA",
    "value": {
        "uri-prefix": "http://interactiionreceiver:8080/interactionreceiver",
        "userName": "interaction receiver user name",
        "password": "interaction receiver password"
    }
}
Comments or questions about this documentation? Contact us for support!