Import subscribers
Import contacts from a CSV file to a given subscriber list
Endpoint URI
1 |
|
Headers
- X-Ownpage-Client-Token : a valid token
Payload (JSON)
The data should be a JSON object with the following parameters :
- email_list_id : email list where to import contacts
- url : public URL of the CSV file to import
CSV file
The CSV file should use ,
or ;
as delimiter and contain the following columns :
- email : (mandatory) the user's email address
- subscribed : (
true|false
) the status subscribed/unsubscribed. If not provided or invalid value :- If the email address is already in your list : the status is not changed
- If not in your list : the address is subscribed
- unsubscribed_cause : unsubscription cause (
READER
: reader decision,PUBLISHER
: publisher decision), used whensubscribed = false
. Default value isREADER
- guid : the ID of the user in your database. This id must match the one used in navigation tracking. If not provided, the value of the guid is md5(email)
- data_* : you can attach additional data to your subscribers using parameters prefixed by
data_
. Example :data_firstname
Response (JSON)
The response is an object containing the following fields :
- id : internal ID for the imported file
- name : filename of the imported file
- url : URL of the imported file
- mediatype : detected mediatype
- subtype : detected subtype
- created_at : date of the import
- size : size of the imported file
- status : status of the import
- email_list_id : email list where contacts have been imported
Example
1 |
|
With REQUEST_DATA:
1 2 3 4 |
|
Response:
1 2 3 4 5 6 7 8 9 10 11 |
|