// archives

PHP

This tag is associated with 21 posts

Clearing A Data Extension In ExactTarget Using PHP

The following is a short code sample of how to clear a data extension inside of ExactTarget. This is very useful for external applications that need to clear data extensions without the need executing a query or deleting every row one at a time. It should be noted that this only applies to Enterprise 2.0 [...]

Creating A Data Filter Via SOAP API In ExactTarget Using PHP

A newly added (or just now documented) feature of the ExactTarget SOAP API is the creation of Data Filters. A Data Filter is simply a set of simple logical operators strung together to create a query like filter. What really makes this powerful is that all ExactTarget accounts have Data Filters, which makes this a [...]

Ticketfly API Wrapper for PHP

I’ve created a simple API wrapper for the Ticketfly API written in PHP which has been made available for public download on Github. It is a simple class that will allow you to access all endpoints within the Ticketfly API. Download it here! For more info about Ticketfly please visit ticketfly.com.

LastFM API Wrapper for PHP

I’ve created a simple API wrapper for the LastFM API written in PHP which has been made available for public download on Github. It is a simple class that will allow you to access all endpoints within the LastFM API. Download it here! For more info about last.fm please visit last.fm.

Rapleaf API Wrapper for PHP

I’ve created a simple API wrapper for the Rapleaf API written in PHP which has been made available for public download on Github. It is a simple class that will allow you to access all endpoints within the Rapleaf API. Download it here! For more info about Rapleaf please visit Rapleaf.com.

Songkick API Wrapper for PHP

I’ve created a simple API wrapper for the Songkick API written in PHP which has been made available for public download on Github. It is a simple class that will allow you to access all endpoints within the Songkick API. Download it here! For more info about Songkick please visit songkick.com.

7Digital API Wrapper for PHP

I’ve created a simple API wrapper for the 7Digital API written in PHP which has been made available for public download on Github. It is a simple class that will allow you to access all endpoints within the 7Digital API. Download it here! For more info about 7Digital please visit 7digital.net.

Facebook API Wrapper for PHP

I’ve created a simple API wrapper for the Facebook API written in PHP which has been made available for public download on Github. It is a simple class that will allow you to access all endpoints within the Facebook API. Download it here! For more info about Facebook (in case you live in a dark [...]

ExactTarget SOAP API Wrapper

Although having the ability to wrap the entire SOAP API would be nice I found it nearly impossible. However, I’ve made a simplified version that allows one to act on ExactTarget objects. It allows for Create, Update, Delete, Retrieve, and Upsert of an object. Again, it is simple but it will save in writing a [...]

How To Execute A Triggered Send With Additional Attributes Via SOAP API In ExactTarget Using PHP

This is an example of how to execute a triggered send within the ExactTarget platform. $wsdl = ‘https://webservice.exacttarget.com/etframework.wsdl’; try{ //Create the Soap Client $client = new ExactTargetSoapClient($wsdl, array(‘trace’=>1)); // Set username and password here $client->username = ‘username’; $client->password = ‘password’; //Define the subscriber $subscriber = new ExactTarget_Subscriber(); $subscriber->EmailAddress = ‘test@test.com’; $subscriber->SubscriberKey = ‘test@test.com’; //Define the [...]

Follow Us

Twitter Stream

Archives

UA-18598603-2