Liste des endpoints disponibles :

/customers-consents/{customer_id} (GET)

Permet de gérer et récupérer l'historique des consentements des profils.

Endpoint: social-sb.com/api/v2/customers-consents/{customer_id}

Verb: GET

Paramètres obligatoires :

Paramètres complémentaires :

Aucun

Réponse :

"customer":
{
 "id": "123456",
 "consents":
 [
    {
        "consentId": "9876",
        "trackId": "1000",
        "consentTechName": "NewsEmail",
        "customerConsentCreatedAt": "2018-06-11 13:03:05",
        "customerConsentStatus": "accepted",
        "customerConsentSource": "campaignParticipation",
        "customerConsentSourceId": "65745"
    },
    {
        "consentId": "9875",
        "trackId": "1001",
        "consentTechName": "NewsSMS",
        "customerConsentCreatedAt": "2018-06-11 13:03:38",
        "customerConsentStatus": "refused",
        "customerConsentSource": "campaignParticipation",
        "customerConsentSourceId": "65746"
    },
    {
        "consentId": "9874",
        "trackId": "1002",
        "consentTechName": "J'accepte d'être contacté occasionnellement par téléphone",
        "customerConsentCreatedAt": "2018-06-11 13:03:44",
        "customerConsentStatus": "unknown",
        "customerConsentSource": "campaignParticipation",
        "customerConsentSourceId": "65747"
    }
 ]
},
"count": 3,
"nextPageUrl": "<http://social-sb.com/api/v2/customers-consents/123456?startAt=3>"

Exemple d'appel PHP :

$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, "<https://social-sb.com/api/v2/customers-consents/123456>");
// Auth avec la clé publique et la clé privée (voir dans Paramétrage > Tracker)
curl_setopt($curl, CURLOPT_USERPWD, "clef_public:cle_privee");
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
$curl_return = curl_exec($curl);
var_dump($curl_return);
curl_close($curl);

Faire une recherche précise :

Il est possible d'affiner la liste retournée en passant des paramètres GET.

Les paramètres d'affinage possibles :

Les paramètres sur la pagination :

**/customers-consents (GET)**

Permet de récupérer tous les customers ayant répondu à un consentement.