View
 

RESTful API: Testing Application

Testing Application Resource 

GET /testing_applications/#{page/email}.xml

 
You can retrieve a list of available clients for each service that Litmus provides. Currently these are either "page" or "email" and should be specified as indicated in the URL example above.
 
Sample XML returned for page testing applications.
 
<testing_applications type="array">
<testing_application>
<result_type>page</result_type>
<popular>false</popular> 
<status>0</status>
<!--0 = Working perfectly, 1 = some delays, 2 = temporarily unavailable -->
<platform_name>Windows</platform_name>
<platform_long_name>Microsoft Windows</platform_long_name>
<application_code>ie5</application_code> <!-- Needed if you want to create a new test with specific testing applications -->
<application_long_name>Explorer 5.0</application_long_name>
</testing_application>
...
</testing_applications>
 
Sample XML returned for email testing applications.
 
<testing_applications type="array">
<testing_application>
<business>false</business>
<result_type>email</result_type>
<supports_content_blocking>true</supports_content_blocking> 
<!-- If a client supports content blocking, it will offer both "images on" and "images off" captures  -->
<desktop_client>false</desktop_client>
<status>0</status>
<platform_name>Web-based</platform_name>
<platform_long_name>Web-based</platform_long_name>
<application_code>gmail</application_code>
<application_long_name>Gmail (Older version)</application_long_name>
</testing_application>
...
</testing_applications>