Comparaison des versions

Légende

  • Ces lignes ont été ajoutées. Ce mot a été ajouté.
  • Ces lignes ont été supprimées. Ce mot a été supprimé.
  • La mise en forme a été modifiée.

This documentation is for the version 2 of the PUBLITRAC API of Publitrac . Please note that Publitrac PUBLITRAC V2 is in BETA and will rapidely evolvestage and it evolves rapidly.

Every All issues and concerns or problems should be adressed quickly to addressed quickly with Michel Frigon (mfrigon@publipage.com).


Sommaire

...


Authentication

The authentification authentication is use used to obtain a valid token that your application will use to connect to each any routes of the API. The token has a self-refreshing TTL (time to live) of 15 minutes. This means that the token lives remains active until 15 minutes after your last call and past this point, you will need to authenticate it again.

Request

URL: /v2/auth/getToken ~ GET
Header
AuthorizationApi key received within the application of Publitrac (See settings)
Acceptapplication/json
Content
No content for this one

Response

Header
No non-standard header
Content

{

"token" : "djs4fdn4dJTer489!",

"ttl" : "900"

}


Token to be used for further calls
Time to live of the token in seconds. (By default will be 900, i.e. 15 minutes)


Synchronize a lead


The goal of this API endpoint is to add information to a lead or to create a new lead within the system of PublitracPUBLITRAC. This version of the sync is a delayed one for performance purposes. The responses request is always accepted , as when submitted and the lead itself is processed later within our system a little later. This allows the ends use a higher volumes volume of call calls towards our API 's when heavier loads happenshappen.

Request

URL: /v2/lead/delayedSync ~ POST
Header
TokenToken of authorization
Acceptapplication/json
Content


Bloc de code
{ 
     "leadInfo": {
         "email" : "john.doe@provider.com",
         "crmLeadId": 12387,
         "jobTitle": "Awesome Programmer",
         "firstName": "John",
         "lastName": "Doe"
     },
     "leadCustomField": {
         "customField1": "Value",
         "customField2": "Value2"
     }
}





leadInfo represent represents the standard Publitrac informations PUBLITRAC information that is required. The email is mandatory as we are using this as a an identifier.
(this will change in a the short futureterm.) . Each All field details is are available here: List and description of all lead fields





LeadCustomFields is an associative array (fieldName => value) of the customField you want to edit/update/add in your lead.

Response

Header
No non-standard header
Content

{

'status' : 'success',

'code' : 200

}


Message of status (See next table)
Code of response (See next table)

...