Activate silently
Activate silently
In some circumstances, for example when creating many Sitecore servers, you will want to silently activate and configure Coveo for Sitecore. This can be done using a REST API to set the different configuration usually entered on the Command Center Activation page.
You can also see the documentation for the provided calls by accessing the Swagger UI available under http://<INSTANCE_HOSTNAME>/coveo/api/config/docs/index
.

Prerequisites
-
A running instance of Sitecore.
NoteFor an extensive list of Sitecore supported versions, see Supported Sitecore Versions and Dependencies.
-
ASP.NET MVC 4.0 or MVC 5.0 installed on your Sitecore server:
NoteTo configure MVC while installing Sitecore, see Sitecore MVC Developer’s Reference Guide. If you have already installed Sitecore and you now want to enable MVC manually, see Sitecore MVC Playground Part 1: Enable MVC.
Available options
The Swagger endpoint provides the following options:
Configure
The Configure
operation is used to set the different values needed for the Coveo for Sitecore configuration, for example the OrganizationId
and ApiKey
.
Activate
The Activate
operation is used to activate Coveo for Sitecore on the Sitecore instance.
This will rename the base .example
config files that come with Coveo for Sitecore to enable them.
It will also validate that all the values required have been set with Configure
previously.
Version
The Version
call is available under http://<INSTANCE_HOSTNAME>/coveo/api/config/version
and returns that latest version of the API.
This version is used in the URL to call the other operations, for example coveo/api/config/v1/configure
.
Make sure to always use a specific version in your client implementation to avoid breaking changes in future versions.
Authentication
An authentication needs to be provided using the x-scUsername
and x-scPassword
headers for each API operations.
Only the Version
call is exempted from this.
Finding the OrganizationId value
The OrganizationId can be retrieved in the URL of your Coveo organization.

Creating an organization
If you don’t have access to an existing organization, you can create a trial organization through the Platform API.
|
You need to specify the organization template for a Coveo for Sitecore trial, here are the options:
|
Creating the API keys
To configure your Sitecore instance, you’ll need 2 API keys that have different privileges: one for search activities (SearchApiKey
) and the other for general configuration activities of your organization (ApiKey
).
To create these API keys, you can either use the Cloud Platform API or the Coveo Administration Console (platform-ca | platform-eu | platform-au) (see Manage API Keys).
Privileges for the SearchApiKey
When using the Cloud Platform API
The SearchApiKey
needs the following privileges:
owner | targetDomain | type | Coveo Administration Console equivalent |
---|---|---|---|
|
|
|
Analytics - Analytics data - Push |
|
|
Search - Execute queries - Allowed |
|
|
|
Search - Impersonate - Allowed |
You must also limit the scope of your SearchApiKey
to a specific searchHub.
This means the payload of your call to the Cloud Platform API must include the following:
"additionalConfiguration": {
"search": {
"enforcedQueryPipelineConfiguration": {
"searchHub": "<NAME_OF_THE_SEARCH_HUB>"
}
}
}
Replace <NAME_OF_THE_SEARCH_HUB> with the actual name of your search hub. |
When using the Coveo Administration Console
The SearchApiKey
needs the following privileges:


You must also limit the scope of your SearchApiKey
to a specific search hub.
Privileges for the ApiKey
The ApiKey
needs the following privileges (when creating the key using the Cloud Platform API):
owner | targetDomain | type | Coveo Administration Console equivalent |
---|---|---|---|
|
|
|
Content - Fields - Edit |
|
|
|
Content - Security identities - Edit |
|
|
|
Content - Security identity providers - Edit |
|
|
|
Content - Sources - Edit all |
|
|
|
Organization - Organization - Edit |
The ApiKey
needs the following privileges (when creating the key using the Cloud Platform Administration Console):


|
Sitecore on Azure Azure’s Web Application Firewall (WAF) may block Coveo query network calls that trigger OWASP rules. You might need to disable or customize Azure WAF rules to allow Coveo for Sitecore network calls (see Azure Web Application Firewall triggered rules block Coveo for Sitecore’s communication on Content Delivery servers). |