Wired Plus API Documentation

Raise a Technical Question with the Support Team

API v1 Guide

Account

Automation

Contacts

Dynamic Rows

Lists

Campaigns

Transactional Emails

Lead Score

Products

Carts

Orders

Custom Fields

POST UpdateList

Updates a list.

Input and output parameters

*denotes required field.

Input Parameter Name Type
id*id of list
namename to update list to.
Output params
  • id (of the list updated)
  • message

Examples

Curl

    
    
        
curl --request POST \
  --url https://api.wiredplus.com/v1/UpdateList \
  --header 'content-type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW' \
  --form 'id=123' \
  --form 'name=Newsletter ' \    
    

PHP

    
    

<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => "https://api.wiredplus.com/v1/UpdateList",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "POST",
  CURLOPT_POSTFIELDS => "
  Content-Disposition: form-data; name=\"id\"\r\n\r\n123\r\n
  Content-Disposition: form-data; name=\"name\"\r\n\r\nNewsletter\r\n
  Content-Disposition: form-data,
  CURLOPT_HTTPHEADER => array(
      "content-type: multipart/form-data;"
  ),
));

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}



jQuery

    
    

var form = new FormData();
form.append("id", 123);
form.append("name", "Newsletter");

var settings = {
    "async": true,
    "crossDomain": true,
    "url": "https://api.wiredplus.com/v1/UpdateList",
    "method": "POST",
    "headers": {},
    "processData": false,
    "contentType": false,
    "mimeType": "multipart/form-data",
    "data": form
}

$.ajax(settings).done(function (response) {
    console.log(response);
});



Result Format JSON

 

{
    "id": "123",
    "message": "updated"
}