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 BulkDynamicRowUpdate

Perform a bulk creation/update dynamic rows.

This feature must be enabled for your account.

A maximum of 50 records can be updated per request.

Input and output parameters

The input and output parameters for this method are:

*denotes required field.

Input Parameter Name Type/Info
type*The dynamic row type.
primary_key*Your internal ID for the record.
contact_id*WiredPlus contact id to assign this record to.
datahash of field assignments defined for the dynamic row.
Outputs:
  • index - row index the data passed to the API
  • id - unique identifier of dynamic row in WiredPlus
  • status - http status code
  • message - action performed or any error messages

Examples

Curl

    
    
        
curl --request POST \
  --url https://api.wiredplus.com/v1/BulkDynamicRowUpdate \
  --header 'content-type: application/json' \
  --data '[{"type":"bookings","primary_key":"123","contact_id":"1","data":{"field1":"field1-val1","field2":"field2-val1","field3":"field3-val1"}},{"type":"bookings","primary_key":"abc","contact_id":"2","data":{"field1":"field1-val2","field2":"field2-val2","field3":"field3-val2"}}]'    
    

PHP

    
    

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => "https://api.wiredplus.com/v1/BulkDynamicRowUpdate",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "POST",
  CURLOPT_POSTFIELDS => '[{"type":"bookings","primary_key":"123","contact_id":"1","data":{"field1":"field1-val1","field2":"field2-val1","field3":"field3-val1"}},{"type":"bookings","primary_key":"abc","contact_id":"2","data":{"field1":"field1-val2","field2":"field2-val2","field3":"field3-val2"}}]',
  CURLOPT_HTTPHEADER => array(
    "content-type: application/json"
  ),
));

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

curl_close($curl);

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



jQuery

    
    

var rows = [
    {
        "type": "bookings",
        "primary_key": "123",
        "contact_id": "1",
        "data": {
            "field1": "field1-val1",
            "field2": "field2-val1",
            "field3": "field3-val1"
        }
    },
    {
        "type": "bookings",
        "primary_key": "abc",
        "contact_id": "2",
        "data": {
            "field1": "field1-val2",
            "field2": "field2-val2",
            "field3": "field3-val2"
        }
    }
];

var settings = {
  "async": true,
  "crossDomain": true,
  "url": "https://api.wiredplus.com/v1/BulkDynamicRowUpdate",
  "method": "POST",
  "headers": {},
  "processData": false,
  "contentType": false,
  "mimeType": "application/json",
  "data": JSON.stringify(rows)
}

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



Result Format JSON

 

[
    {
	"index": "0",
        "id": "8aea8eba0c77435dabad8649e8cd648a",
        "status": "200",
        "message": "updated"
    },
    {
	"index": "1",
        "id": "c5b5dd0d6a3e435cb806fc1eecfd63c1",
        "status": "400",
        "error": "Invalid field 'field1', expecting number."
    }
]