All Collections
Settings & How Tos
How to Configure a Cookie Consent Service
How to Configure a Cookie Consent Service

This article gives you the basic information you need to configure ProveSource with your cookie consent service manager.

Daniel avatar
Written by Daniel
Updated over a week ago

This article gives you the basic information you need to configure ProveSource with your cookie consent service manager.

Note: You can always reach out to our support team over the live chat if you have any questions.

Create a Service from scratch. Create the following cookies:

1. ps-goals:

Cookie Type: HTTP Cookie

Cookie Name: ps-goals

Description: this cookie saves the id of each completed ProveSource goal, in order to later report it to the server

Domain: [your domain]

Duration: session

2. ps*:

Cookie Type: HTTP Cookie

Cookie Name: ps*

Description: this cookie helps ProveSource count the number of monthly unique visitors on the website, for the sake of plan usage calculations.

Domain: [your domain]

Duration: 1 month

3. psuid:

Cookie Type: HTTP Cookie

Cookie Name: psuid

Description: this cookie anonymously identifies a visitor and helps us avoid counting the same user multiple times through the monthly plan.

Domain: [your domain]

Duration: 10 years

Code to execute on page load:

This code stops ProveSource from running.

<script>
if(window.provesrc){
provesrc.stop()
}
<script>

Code to execute on opt-in:

This code resumes ProveSource after the user has given consent.

<script>
if(window.provesrc){
provesrc.resume()
}
<script>

Did this answer your question?