Overview
Shared NICE integration
PolyAI uses a shared NICE connector service integration, so uses common IPs across clients. Each client has unique pseudo numbers assigned by NICE, which are used alongside the connector’s authentication token to route calls to a project.Handoff process
Signal API
PolyAI uses the Signal API for call handoffs. This API supports up to 9 additional parameters, making it useful for passing larger data sets to clients.Requirements for the Signal API
- A Client-provided
access_key_idand access_key_secret. - The
Client_idandclient_secretfrom NICE: To obtain these, fill out the NICE API application form. Include:- Your CxOne business unit number.
- Your contact details, arbitrary application name, and description.
- Answer tenant-related questions: Select Single and Global.
- For Questions 10 and 11: Choose
secret_basicandAdminAPI. - For Question 12: Select Back-End.
client_id and client_secret.
Using the Signal API
- Configure the Signal API in the PolyAI project:
- Use
CxOneClientto initialize as a service inservices > __init__.py. - Call the
signalfunction, requiring acontact_idpassed using an X-Header in the initial SIP INVITE.
- Use
- Pass additional data:
- Use the API to include up to 9 arbitrary parameters if more detailed data is required than the SIP X-Header can accommodate.
Setup steps
1: Obtain required credentials
- From NICE: Retrieve
client_idandclient_secretafter form submission. - From the client:
Access_key_idandaccess_key_secret, and the CxOne business unit number.
2: Configure the NICE connector in PolyAI
- Add a NICE connector to your PolyAI project.
- Save the provided authentication token for routing calls.
- If applicable, enable the Handoff API in your project and generate an API key for screen-pop or related functionality.

