Routines/Scoring

Récupère les données lié au scoring et aux identifications sur les routines

GET https://api.campaign.coefficy.com/v1/supply/identification

Paramètre idSupply, idCompany, siren, pollingScoring ou pollingTag nécessaire

Query Parameters

Name
Type
Description

idSupply

int

minScoringMatch

int

idCompany

int|int[]

siren

String

pollingScoring

int

Scoring modifié durant les x dernières minutes (minimum 15)

pollingTag

int

Tag sur la routine modifié durant les x dernières minutes (minimum 15)

Headers

Name
Type
Description

x-access-token*

String

{
    "success": true,
    "parameters": {
        ...
    },
    "supplyIdentificationList": [
        {
            "idSupply": int,
            "idCompany": int,
            "idIdentificationType": int,
            "date": datetime,
            "isManual": bool,
            "isFormerCustomer": bool,
            "identificationType": {
                "idIdentificationType": int,
                "title": string
            },
            "scoring": {
                "idScoring": int,
                "date": datetime,
                "match": int,
                "idCompany": int,
                "idSupply": int
            }|null
        }
    ]

Créer/Modifier un tag pour une société sur une routine

POST https://api.campaign.coefficy.com/v1/supply/identification

Pour identifier la société: idCompany ou siren

Pour les paramètres idIdentificationType et isFormerCustomer, si le paramètre est vide ou non renseigné le champ ne sera pas écrasé en cas de modification.

Headers

Name
Type
Description

x-access-token

String

Request Body

Name
Type
Description

idSupply*

int

idCompany

int

siren

String

idIdentificationType

int|null

isFormerCustomer

bool|null

Récupère la liste des type d'identifications disponibles

GET https://api.campaign.coefficy.com/v1/supply/identificationType

Headers

Name
Type
Description

x-access-token*

String

{
    "success": true,
    "parameters":{
        ...
    },
    "identificationTypeList":[
        {
            "idIdentificationType": int,
            "title":string
        }
    ]
}

Last updated