INZU API

XML Feed details

This section provides full details of each XML feed including the XML structure and call parameters.

General

My Site

Store

Each XML example is for a single entry, subsequent entries are listed concurrently using a unique entry tag e.g. <entry entry_id='1'>...</entry><entry entry_id='2'>...</entry> etc.
WARNING!
Only the following HTML tags can be saved in My Site entries: <a> <p> <em> <strong> <blockquote> <ul> <ol> <li> <b> <i> <u> <br> <h1> <h2> <h3> <h4> <h5> <h6>

Account live

A simple request to check the account is live and inzu.net is available for access. This should be verified on every page to ensure connectivity has been established.

XML Call

http://api.inzu.net/xml/account/live.xml?api_key={$key}&api_pass={$pass

XML Structure

<?xml version="1.0" encoding="UTF-8" ?>
<inzu>
<live_status>true</live_status>
</inzu>

Home page

Add a single entry or multiple entries for your home page, with HTML text formatting and images.

Contents

Title - 200 characters
Entry- 6000 characters
Image - Max width 800 pixels, Max height 1000 pixels
Date - Unix time stamp
Tags - 300 characters

XML Call

http://api.inzu.net/xml/my_site/my_site.xml?api_key={$key}&api_pass={$pass}&zone=home

Call Parameters

entry_id (int) - display a specific entry by stating the entry id
page (int) - currently selected page
page_rows (int) - number of rows per page
latest (boolean) - display the most recently added entry only
select (array) - retrieve only certain fields for speed (comma separated)
tags (string) - display only entries with matching tag(s) - multiple tags should be comma separated
tagHide (string) - don't retrieve entries with matching tag
order (date) (entry_id) - order results by date or entry id, defaults to entry id if left blank
order_type (ASC) (DESC) - sort entries descending or ascending, used in conjunction with "order" parameter

Example:
http://api.inzu.net/xml/my_site/my_site.xml?api_key={$key}&api_pass={$pass}&zone=home&latest=true

XML Structure

<?xml version="1.0" encoding="UTF-8" ?>
<inzu>
<entry entry_id='1'>
<title>Example Title</title>
<entry>Entry example, free text allowed here</entry>
<image>http://media.inzu.net/user/mysite/home/img_1.jpg</image>
<image_thumb>http://media.inzu.net/user/mysite/home/imgThumb_1.jpg</image_thumb>
<date>78903030</date>
<tags>tag1,tag2,tag3</tags>
</entry>
</inzu>

News Feed

The news feed provides a short article format for regular news updates and includes an accompanying image, all entries are dated.

Contents

Title - 200 characters
Article - 1000 characters
Image - Max width 800 pixels, Max height 1000 pixels
File download - Max 8MB
Date - Unix time stamp
Tags - 300 characters

XML Call

http://api.inzu.net/xml/my_site/my_site.xml?api_key={$key}&api_pass={$pass}&zone=news

Call Parameters

entry_id (int) - display a specific entry by stating the entry id
page (int) - currently selected page
page_rows (int) - number of rows per page
latest (boolean) - display the most recently added entry only
select (array) - retrieve only certain fields for speed (comma separated)
tags (string) - display only entries with matching tag(s) - multiple tags should be comma separated
tagHide (string) - don't retrieve entries with matching tag
order (date) (entry_id) - order results by date or entry id, defaults to entry id if left blank
order_type (ASC) (DESC) - sort entries descending or ascending, used in conjunction with "order" parameter

Example:
http://api.inzu.net/xml/my_site/my_site.xml?api_key={$key}&api_pass={$pass}&zone=news&latest=true

XML Structure

<?xml version="1.0" encoding="UTF-8" ?>
<inzu>
<entry entry_id='1'>
<title>Example Title</title>
<article>Article example, free text allowed here</article>
<image>http://media.inzu.net/user/mysite/news/img_1.jpg</image>
<image_thumb>http://media.inzu.net/user/mysite/news/imgThumb_1.jpg</image_thumb>
<file>http://media.inzu.net/user/mysite/news/file_1.jpg</file>
<file_size>357829</file_size>
<date>78903030</date>
<tags>tag1,tag2,tag3</tags>
</entry>
</inzu>

About

The about feed is a one time entry to write a description about you or your company.

Contents

About - 2000 characters
Image - Max width 800 pixels, Max height 1000 pixels
Date - Unix time stamp

XML Call

http://api.inzu.net/xml/my_site/my_site.xml?api_key={$key}&api_pass={$pass}&zone=about

XML Structure

<?xml version="1.0" encoding="UTF-8" ?>
<inzu>
<entry entry_id='1'>
<about>About text</about>
<image>http://media.inzu.net/user/mysite/about/img_1.jpg</image>
<date>78903030</date>
</entry>
</inzu>

Articles

The articles feed allows you upload multiple articles that include text formatting, images and file attachments.

Contents

Title - 200 characters
Description - 500 characters
Category/Section - 100 characters
Article - 6000 characters
Image list - Max width 800 pixels, Max height 1000 pixels
File list - Max file size 8MB
Date - Unix time stamp

XML Call

http://api.inzu.net/xml/my_site/my_site.xml?api_key={$key}&api_pass={$pass}&zone=articles

Call Parameters

entry_id (int) - display a specific entry by stating the entry id
page (int) - currently selected page
page_rows (int) - number of rows per page
latest (boolean) - display the most recently added entry only
category (string) - display entries with matching category
select (array) - retrieve only certain fields for speed (comma separated)
select (array) - retrieve only certain fields for speed (comma separated)
tags (string) - display only entries with matching tag(s) - multiple tags should be comma separated
tagHide (string) - don't retrieve entries with matching tag
order (date) (entry_id) - order results by date or entry id, defaults to entry id if left blank
order_type (ASC) (DESC) - sort entries descending or ascending, used in conjunction with "order" parameter

XML Structure

<?xml version="1.0" encoding="UTF-8" ?>
<inzu>
<entry entry_id='1'>
<title>Article Title</article>
<description>Description of article</description>
<category>Blog</category>
<article>The article text in full</article>
<image_list>
<image>http://media.inzu.net/user/mysite/articles/1/img_1.jpg</image>
<image_thumb>http://media.inzu.net/user/mysite/articles/1/thumbimg_1.jpg</image_thumb>
<caption>Image 1 caption</caption>
<height>400</height>
<width>200</width>
</image_list>
<image_list>
<image>http://media.inzu.net/user/mysite/articles/1/img_2.jpg</image>
<image_thumb>http://media.inzu.net/user/mysite/articles/1/thumbimg_2.jpg</image_thumb>
<caption>file 2 caption</caption>
<height>400</height>
<width>200</width>
</image_list>
<file_list>
<file>http://media.inzu.net/user/mysite/articles/1/file_1.jpg</file>
<description>file 1 description</description>
</file_list>
<date>78903030</date>
</entry>
</inzu>

Events Feed

The events feed is one of the most complex of all the My Site feeds with extensive details about the event as well as a supporting image gallery.

Contents

Title - 200 characters
Location - 80 characters
Venue - 100 characters
Venue HTML link - 200 characters
Starring - 400 characters
Booking link - 100 characters
Entry fee - 100 characters
Event time - 100 characters
Description - 500 characters
Image (e.g flyer/poster) - Max width 800 pixels, Max height 1000 pixels
Review - 800 characters
Gallery (image list) - Max width 800 pixels, Max height 1000 pixels (images include 100 character caption)
Date - Unix time stamp
Tags - 300 characters

XML Call

http://api.inzu.net/xml/my_site/my_site.xml?api_key={$key}&api_pass={$pass}&zone=events

Call Parameters

entry_id (int) - display a specific entry by stating the entry id
page (int) - currently selected page
page_rows (int) - number of rows per page
latest (boolean) - display the most recently added entry only
forthcoming (boolean) - display entries with a date set to the current day or in the future
select (array) - retrieve only certain fields for speed (comma separated)
tags (string) - display only entries with matching tag(s) - multiple tags should be comma separated
tagHide (string) - don't retrieve entries with matching tag
order (date) (entry_id) - order results by date or entry id, defaults to entry id if left blank
order_type (ASC) (DESC) - sort entries descending or ascending, used in conjunction with "order" parameter

Example:
http://api.inzu.net/xml/my_site/my_site.xml?api_key={$key}&api_pass={$pass}&zone=events&tag=album

XML Structure

<?xml version="1.0" encoding="UTF-8" ?>
<inzu>
<entry entry_id='1'>
<title>Example Title</title>
<location>Location of the event</location>
<venue>Information about the venue such a capacity, parking etc.</venue>
<venue_link>A HTML link to the venue's website</venue_link>
<stars>information about the people starring at the event</stars>
<book>A HTML link to buy ticket for the event</book>
<fee>Details of the event entrance fee</fee>
<time>Details of the start and finish time</time>
<description>Write anything you want about the event</description>
<image>http://media.inzu.net/user/mysite/news/img_1.jpg</image>
<image_thumb>http://media.inzu.net/user/mysite/news/imgThumb_1.jpg</image_thumb>
<review>After the event has passed write up a review of what happened</review>
<image_list>
<image>http://media.inzu.net/user/mysite/events/1/img_1.jpg</image>
<caption>Image 1 caption</caption>
<image_thumb>http://media.inzu.net/user/mysite/events/1/thumbimg_1.jpg</image>
</image_list>
<image_list>
<image>http://media.inzu.net/user/mysite/events/1/img_2.jpg</image>
<caption>Image 2 caption</caption>
<image_thumb>http://media.inzu.net/user/mysite/events/1/thumbimg_2.jpg</image>
</image_list>
<date>78903030</date>
<tags>tag1,tag2,tag3</tags>
</entry>
</inzu>

Gallery Feed

The gallery feed uses a similar format to the events feed but with fewer descriptive entry types.

Contents

Title - 200 characters
Description - 500 characters
Image list - Max width 800 pixels, Max height 1000 pixels (images include 100 character caption)
Date - Unix time stamp
Tags - 300 characters

XML Call

http://api.inzu.net/xml/my_site/my_site.xml?api_key={$key}&api_pass={$pass}&zone=gallery

Call Parameters

entry_id (int) - display a specific entry by stating the entry id
page (int) - currently selected page
page_rows (int) - number of rows per page
latest (boolean) - display the most recently added entry only
select (array) - retrieve only certain fields for speed (comma separated)
tags (string) - display only entries with matching tag(s) - multiple tags should be comma separated
tagHide (string) - don't retrieve entries with matching tag
order (date) (entry_id) - order results by date or entry id, defaults to entry id if left blank
order_type (ASC) (DESC) - sort entries descending or ascending, used in conjunction with "order" parameter

Example:
http://api.inzu.net/xml/my_site/my_site.xml?api_key={$key}&api_pass={$pass}&zone=gallery&entry_id=45

XML Structure

<?xml version="1.0" encoding="UTF-8" ?>
<inzu>
<entry entry_id='1'>
<title>Example Title</title>
<description>Write a description of the gallery</description>
<image_list>
<image>http://media.inzu.net/user/mysite/gallery/1/img_1.jpg</image>
<caption>Image 1 caption</caption>
<image_thumb>http://media.inzu.net/user/mysite/gallery/1/thumbimg_1.jpg</image>
</image_list>
<image_list>
<image>http://media.inzu.net/user/mysite/gallery/1/img_2.jpg</image>
<caption>Image 2 caption</caption>
<image_thumb>http://media.inzu.net/user/mysite/gallery/1/thumbimg_2.jpg</image>
</image_list>
<date>78903030</date>
<tags>tag1,tag2,tag3</tags>
</entry>
</inzu>

Video Feed

The video feed provides a way to archive and access embedded videos on your site.

Contents

Title - 200 characters
Description - 500 characters
Image - Max width 800 pixels, Max height 1000 pixels
Embed code - 800 characters
Duration (any format) - 20 characters
Date - Unix time stamp
Tags - 300 characters

XML Call

http://api.inzu.net/xml/my_site/my_site.xml?api_key={$key}&api_pass={$pass}&zone=video

Call Parameters

entry_id (int) - display a specific entry by stating the entry id
page (int) - currently selected page
page_rows (int) - number of rows per page
latest (boolean) - display the most recently added entry only
select (array) - retrieve only certain fields for speed (comma separated)
tags (string) - display only entries with matching tag(s) - multiple tags should be comma separated
tagHide (string) - don't retrieve entries with matching tag
order (date) (entry_id) - order results by date or entry id, defaults to entry id if left blank
order_type (ASC) (DESC) - sort entries descending or ascending, used in conjunction with "order" parameter

Example:
http://api.inzu.net/xml/my_site/my_site.xml?api_key={$key}&api_pass={$pass}&zone=video&tagHide=fails

XML Structure

<?xml version="1.0" encoding="UTF-8" ?>
<inzu>
<entry entry_id='1'>
<title>Example Title</title>
<description>Description of the video</description>
<video>Video embed code</video>
<duration>The video duration in a format of your choice</duration>
<image>http://media.inzu.net/user/mysite/video/img_1.jpg</image>
<date>78903030</date>
<tags>tag1,tag2,tag3</tags>
</entry>
</inzu>

Sound Feed

The sound feed provides a way to archive and access sound clips and music on your site.

Contents

Title - 200 characters
Description - 500 characters
Image - Max width 800 pixels, Max height 1000 pixels
File - Formats; mp3,mp4,wav,aif (max 8MB)
Embed code - 1500 characters
Date - Unix time stamp
Tags - 300 characters

XML Call

http://api.inzu.net/xml/my_site/my_site.xml?api_key={$key}&api_pass={$pass}&zone=sound

Call Parameters

entry_id (int) - display a specific entry by stating the entry id
page (int) - currently selected page
page_rows (int) - number of rows per page
latest (boolean) - display the most recently added entry only
select (array) - retrieve only certain fields for speed (comma separated)
tags (string) - display only entries with matching tag(s) - multiple tags should be comma separated
tagHide (string) - don't retrieve entries with matching tag
order (date) (entry_id) - order results by date or entry id, defaults to entry id if left blank
order_type (ASC) (DESC) - sort entries descending or ascending, used in conjunction with "order" parameter

Example:
http://api.inzu.net/xml/my_site/my_site.xml?api_key={$key}&api_pass={$pass}&zone=sound&tag=rock

XML Structure

<?xml version="1.0" encoding="UTF-8" ?>
<inzu>
<entry entry_id='1'>
<title>Example Title</title>
<description>Description of sound clip</description>
<file>http://media.inzu.net/user/mysite/sound/rock.mp3</file>
<embed>The embed code from Souncloud or other site</embed>
<image>http://media.inzu.net/user/mysite/sound/img_1.jpg</image>
<date>78903030</date>
<tags>tag1,tag2,tag3</tags>
</entry>
</inzu>

Downloads

The downloads feed allows you feature downloads of small files (up to 8MB).

Contents

Title - 200 characters
Description - 240 characters
File - Max file size 8MB
File link - 400 characters
File size - In bytes
Image - Max width 800 pixels, Max height 1000 pixels
Date - Unix time stamp

XML Call

http://api.inzu.net/xml/my_site/my_site.xml?api_key={$key}&api_pass={$pass}&zone=downloads

Call Parameters

entry_id (int) - display a specific entry by stating the entry id
page (int) - currently selected page
page_rows (int) - number of rows per page
latest (boolean) - display the most recently added entry only
select (array) - retrieve only certain fields for speed (comma separated)
tags (string) - display only entries with matching tag(s) - multiple tags should be comma separated
tagHide (string) - don't retrieve entries with matching tag
order (date) (entry_id) - order results by date or entry id, defaults to entry id if left blank
order_type (ASC) (DESC) - sort entries descending or ascending, used in conjunction with "order" parameter

XML Structure

<?xml version="1.0" encoding="UTF-8" ?>
<inzu>
<entry entry_id='1'>
<title>Download Title</article>
<description>Description of download</description>
<article>The article text in full</article>
<file>http://media.inzu.net/user/mysite/downloads/1/file_1.jpg</file>
<file_link>http://www.mysite.com/downloads/file_1.jpg</file_link>
<file_size>458945894</file_size>
<image>http://media.inzu.net/user/mysite/downloads/1/img_1.jpg</image>
<date>78903030</date>
</entry>
</inzu>

People Feed

The people feed allows you to create detailed personal profiles of everyone associated with your company.

Contents

Name - 100 characters
Sex - 10 characters
Image - Max width 800 pixels, Max height 1000 pixels
Department - 100 characters
Role - 50 characters
E-mail - 100 characters
Phone - 25 characters
Biography - 8000 characters
Birthday (any format) - 20 characters
Interests - 500 characters
Influences - 500 characters
Testimonials - 900 characters
HTML Link 1 - 250 characters
HTML Link 2 - 250 characters
HTML Link 3 - 250 characters
Date - Unix time stamp
Tags - 300 characters

XML Call

http://api.inzu.net/xml/my_site/my_site.xml?api_key={$key}&api_pass={$pass}&zone=people

Call Parameters

entry_id (int) - display a specific entry by stating the entry id
page (int) - currently selected page
page_rows (int) - number of rows per page
latest (boolean) - display the most recently added entry only
select (array) - retrieve only certain fields for speed (comma separated)
tags (string) - display only entries with matching tag(s) - multiple tags should be comma separated
tagHide (string) - don't retrieve entries with matching tag
order (date) (entry_id) - order results by date or entry id, defaults to entry id if left blank
order_type (ASC) (DESC) - sort entries descending or ascending, used in conjunction with "order" parameter

Example:
http://api.inzu.net/xml/my_site/my_site.xml?api_key={$key}&api_pass={$pass}&zone=people&entry_id=78

XML Structure

<?xml version="1.0" encoding="UTF-8" ?>
<inzu>
<entry entry_id='1'>
<name>John Doe</name>
<sex>Male</sex>
<image>http://media.inzu.net/user/mysite/people/img_1.jpg</image>
<image_thumb>http://media.inzu.net/user/mysite/people/imgThumb_1.jpg</image_thumb>
<department>Admin</department>
<role>Accountant</role>
<email>john@doe.com</email>
<phone>+(44) 0 207 288 989</phone>
<biography>All about John Doe</biography>
<birthday>3rd January 1969</birthday>
<interests>Baseball,fishing,movies</interests>
<influences>Johnny Cash, Hank Marvin</influences>
<testimonials>A truly amazing individual</testimonials>
<link_1>http://www.twitter.com/johndoe</link_1>
<link_2>http://www.facebook.com/johndoe</link_2>
<link_3>http://www.youtube.com/johndoe</link_3>
<date>78903030</date>
<tags>tag1,tag2,tag3</tags>
</entry>
</inzu>

Links Feed

A basic list of links to external site with an optional image and description.

Contents

Title - 100 characters
HTML Link 1 - 250 characters
Image - Max width 800 pixels, Max height 1000 pixels
Description - 500 characters
Date - Unix time stamp
Tags - 300 characters

XML Call

http://api.inzu.net/xml/my_site/my_site.xml?api_key={$key}&api_pass={$pass}&zone=links

Call Parameters

entry_id (int) - display a specific entry by stating the entry id
page (int) - currently selected page
page_rows (int) - number of rows per page
latest (boolean) - display the most recently added entry only
order (date) (entry_id) - order results by date or entry id, defaults to entry id if left blank
order_type (ASC) (DESC) - sort entries descending or ascending, used in conjunction with "order" parameter

Example:
http://api.inzu.net/xml/my_site/my_site.xml?api_key={$key}&api_pass={$pass}&zone=links&entry_id=982

XML Structure

<?xml version="1.0" encoding="UTF-8" ?>
<inzu>
<entry entry_id='1'>
<title>Example Title 1</title>
<HTML_link>http://www.cbs.com/</HTML_link>
<image>http://media.inzu.net/user/mysite/links/img_1.jpg</image>
<image_thumb>http://media.inzu.net/user/mysite/links/imgThumb_1.jpg</image_thumb>
<description>Free text description</description>
<date>78903030</date>
<tags>tag1,tag2,tag3</tags>
</entry>
</inzu>

Press Feed

An archive of press you or your company may of had.

Contents

Title - 100 characters
Description - 3000 characters
HTML Link - 250 characters
Image - Max width 800 pixels, Max height 1000 pixels
Date - Unix time stamp
Tags - 300 characters

XML Call

http://api.inzu.net/xml/my_site/my_site.xml?api_key={$key}&api_pass={$pass}&zone=press

Call Parameters

entry_id (int) - display a specific entry by stating the entry id
page (int) - currently selected page
page_rows (int) - number of rows per page
latest (boolean) - display the most recently added entry only
order (date) (entry_id) - order results by date or entry id, defaults to entry id if left blank
order_type (ASC) (DESC) - sort entries descending or ascending, used in conjunction with "order" parameter

Example:
http://api.inzu.net/xml/my_site/my_site.xml?api_key={$key}&api_pass={$pass}&zone=press&tag=tv

XML Structure

<?xml version="1.0" encoding="UTF-8" ?>
<inzu>
<entry entry_id='1'>
<title>Example Title 1</title>
<description>Free text description</description>
<HTML_link>http://www.cbs.com/</HTML_link>
<image>http://media.inzu.net/user/mysite/press/img_1.jpg</image>
<image_thumb>http://media.inzu.net/user/mysite/press/imgThumb_1.jpg</image_thumb>
<date>78903030</date>
<tags>tag1,tag2,tag3</tags>
</entry>
</inzu>

Catalogue Feed

An archive/library of your products, ideal for a discography.

Contents

Product Code - 250 characters
Title - 100 characters
Description - 3000 characters
HTML Link - 250 characters
Image - Max width 800 pixels, Max height 1000 pixels
Date - Unix time stamp
Tags - 300 characters

XML Call

http://api.inzu.net/xml/my_site/my_site.xml?api_key={$key}&api_pass={$pass}&zone=catalogue

Call Parameters

entry_id (int) - display a specific entry by stating the entry id
page (int) - currently selected page
page_rows (int) - number of rows per page
latest (boolean) - display the most recently added entry only
order (date) (entry_id) - order results by date or entry id, defaults to entry id if left blank
order_type (ASC) (DESC) - sort entries descending or ascending, used in conjunction with "order" parameter

Example:
http://api.inzu.net/xml/my_site/my_site.xml?api_key={$key}&api_pass={$pass}&zone=catalogue&tag=mugs

XML Structure

<?xml version="1.0" encoding="UTF-8" ?>
<inzu>
<entry entry_id='1'>
<code>CODE01</code>
<title>Example Title 1</title>
<description>Free text description</description>
<HTML_link>http://www.cbs.com/</HTML_link>
<image>http://media.inzu.net/user/mysite/catalogue/img_1.jpg</image>
<image_thumb>http://media.inzu.net/user/mysite/catalogue/imgThumb_1.jpg</image_thumb>
<date>78903030</date>
<tags>tag1,tag2,tag3</tags>
</entry>
</inzu>

Contact Feed

The contact feed provides data for a single or multiple contact information pages.

Contents

Title - 200 characters
Contact - 2000 characters
Date - Unix time stamp
Tags - 300 characters

XML Call

http://api.inzu.net/xml/my_site/my_site.xml?api_key={$key}&api_pass={$pass}&zone=contact

Call Parameters

entry_id (int) - display a specific entry by stating the entry id
page (int) - currently selected page
page_rows (int) - number of rows per page
latest (boolean) - display the most recently added entry only
select (array) - retrieve only certain fields for speed (comma separated)
tags (string) - display only entries with matching tag(s) - multiple tags should be comma separated
tagHide (string) - don't retrieve entries with matching tag
order (date) (entry_id) - order results by date or entry id, defaults to entry id if left blank
order_type (ASC) (DESC) - sort entries descending or ascending, used in conjunction with "order" parameter

Example:
http://api.inzu.net/xml/my_site/my_site.xml?api_key={$key}&api_pass={$pass}&zone=contact&latest=true

XML Structure

<?xml version="1.0" encoding="UTF-8" ?>
<inzu>
<entry entry_id='1'>
<title>Example Title</title>
<contact>Contact example, free text allowed here</contact>
<date>78903030</date>
<tags>tag1,tag2,tag3</tags>
</entry>
</inzu>

Category Feed

A basic call to retrieve your stores category list.

Contents

Category Name - 100 characters

XML Call

http://api.inzu.net/xml/account/categories.xml?api_key={$key}&api_pass={$pass}

Call Parameters

order (alpha) - if set to "alpha" categories are order alphanumerically

Example:
http://api.inzu.net/xml/account/categories.xml?api_key={$key}&api_pass={$pass}&order=alpha

XML Structure

<?xml version="1.0" encoding="UTF-8" ?>
<inzu>
<category>Example category 1</category>
<category>Example category 2</category>
<category>Example category 3</category>
<category>Example category 4</category>
</inzu>

Product Feed

This feed provides you with all the information related to your mail-order and digital products. Please note for products with item variations that the variations appear within the overall product tag with their own item tag.

Contents

Category - 50 characters
Product Title - 40 characters
Author - 40 characters
Description - 100 characters
Long Description - 1000 characters
Image - Max width 200 pixels
Image Large - Max width 600 pixels, Max height 800 pixels
Preview - jpg,gif,png,mov,mpg,wmv,avi,mp3,wav,pdf,ppt,doc
Price GBP - Decimal 00.00
Price USD - Decimal 00.00
Shipping N.America GBP - Decimal 00.00
Shipping S.America GBP - Decimal 00.00
Shipping Europe GBP - Decimal 00.00
Shipping Europe GBP - Decimal 00.00
Shipping N.America USD - Decimal 00.00
Shipping S.America USD - Decimal 00.00
Shipping Europe USD - Decimal 00.00
Shipping Europe USD - Decimal 00.00
Stock - Integer
Active - Active=1 Deactivated=0
Pages - Integer (total pages for result)
Tags - 300 characters

XML Call

http://api.inzu.net/xml/product/product.xml?api_key={$key}&api_pass={$pass}

Call Parameters

category (varchar) - display a specific category, spaces replaced with "_"
display (ALL) - display active and deactiavted item if set to "ALL"
item_array (varchar) - display a slection of items based on a comma delimited array e.g 34,466,657
tags (string) - display only entries with matching tag(s) - multiple tags should be comma separated
tagHide (string) - don't retrieve entries with matching tag
page (int) - currently selected page
page_rows (int) - number of rows per page
order (product_title) (sales) (price_uk) (price_us) - defaults to item code if left blank
order_type (ASC) (DESC) - sort entries descending or ascending, used in conjunction with "order" parameter

Example:
http://api.inzu.net/xml/product/product.xml?api_key={$key}&api_pass={$pass}&category=China_Vases

XML Structure

<?xml version="1.0" encoding="UTF-8" ?>
<inzu>
<product product_code="3569" product_img="http://media.inzu.net/user/images/567_thumb.png" product_img_large="http://media.inzu.net/user/images/567_img.png" >
<item item_code='567'>
<category>Product Category</catgeory>
<title>Example Title 1</title>
<author>Example Author 1</author>
<description>Free text description</description>
<long_description>Free text description</long_description>
<image>http://media.inzu.net/user/images/567_thumb.png</image>
<image_large>http://media.inzu.net/user/images/567_img.png</image_large>
<preview>http://media.inzu.net/user/previews/prv_567.jpg</preview>
<price_uk>17.99</price_uk>
<price_us>24.99</price_us>
<shipping_namerica_uk>1.99</shipping_namerica_uk>
<shipping_samerica_uk>1.99</shipping_samerica_uk>
<shipping_europe_uk>1.99</shipping_europe_uk>
<shipping_world_uk>1.99</shipping_world_uk>
<shipping_namerica_us>2.99</shipping_namerica_us>
<shipping_samerica_us>2.99</shipping_samerica_us>
<shipping_europe_us>2.99</shipping_europe_us>
<shipping_world_us>2.99</shipping_world_us>
<stock>99</stock>
<active>1</active>
<pages>3</pages>
<tags>tag1,tag2,tag3</tags>
</item>
</product>
</inzu>

Music Release Feed

This feed provides you with all the information related to music release products.

Contents

Track - Integer
Category - 100 characters
Catalogue Number - 100 characters
Release Date - UNIX time stamp
Short Description - 300 characters
Long Description - 850 characters
Image - Max width 600 pixels, Max height 800 pixels
Bundle Title - 250 characters
Bundle Artist - 250 characters
Title - 250 characters
Artists - 250 characters
Credits - 400 characters
Duration minutes - Integer
Duration seconds - Integer
Year - Integer
Preview - mp3
Price GBP - Decimal 00.00
Price USD - Decimal 00.00
Sale - Boolean
Format - CD,Digital,Vinyl
Available formats - CD,Digital,Vinyl

XML Call

http://api.inzu.net/xml/release/release.xml?api_key={$key}&api_pass={$pass}

Call Parameters

category (varchar) - display a spefic category, spaces replaced with "_"
bundlesOnly (boolean) - display only the bundle instead of all the tracks for a release
format (digital) (cd) (vinyl) - display only a particular format
cat_no (varchar) - display only a chosen rlease by a specified catalogue number
item_array (varchar) - display a selection of items based on a comma delimited array e.g 34,466,657
tags (string) - display only entries with matching tag(s) - multiple tags should be comma separated
tagHide (string) - don't retrieve entries with matching tag
search (varchar) - display items based on a search term matched in credits or artists, send spaces as "_"
page (int) - currently selected page
page_rows (int) - number of rows per page
order (date) (title) (sales) (price_uk) (price_us) - defaults to release date if left blank
order_type (ASC) (DESC) - sort entries descending or ascending, used in conjunction with "order" parameter

Example:
http://api.inzu.net/xml/release/release.xml?api_key={$key}&api_pass={$pass}&search=tina_turner

XML Structure

<?xml version="1.0" encoding="UTF-8" ?>
<inzu>
<product>
<track number='bundle' item_code='456' product_code='644'>
<category>Example Category</category>
<cat_no>INZU01</cat_no>
<release_date>283942489</release_date>
<short_description>Free text description</short_description>
<long_description>Free text description</long_description>
<image>http://media.inzu.net/user/images/456_thumb.png</image>
<image_large>http://media.inzu.net/user/images/456_img.png</image_large>
<bundle_title>The bundle title</bundle_title>
<bundle_artist>The bundle artist</bundle_artist>
<title>Example Title 1</title>
<artists>Artists list</artists>
<credits>Credits</credits>
<minutes>9</minutes>
<seconds>45</seconds>
<year>2097</year>
<preview>http://media.inzu.net/user/prveiews/prv_456.mp3</preview>
<price_uk>1.99</price_uk>
<price_us>2.99</price_us>
<sale>true</sale>
<format>digital</format>
<format_array>digital,cd,vinyl</format_array>
<tags>tag1,tag2,tag3</tags>
</track>
<track number='1' item_code='457' product_code='644'>
<category>Example Category</category>
<cat_no>INZU01</cat_no>
<release_date>283942489</release_date>
<short_description>Free text description</short_description>
<long_description>Free text description</long_description>
<image>http://media.inzu.net/user/images/457_thumb.png</image>
<image_large>http://media.inzu.net/user/images/457_img.png</image_large>
<bundle_title>The bundle title</bundle_title>
<bundle_artist>The bundel artist</bundle_artist>
<title>Example Title Track 1</title>
<artists>Artists list</artists>
<credits>Credits</credits>
<minutes>3</minutes>
<seconds>34</seconds>
<year>2097</year>
<preview>http://media.inzu.net/user/previews/prv_457.mp3</preview>
<price_uk>0.99</price_uk>
<price_us>1.99</price_us>
<sale>true</sale>
<format>digital</format>
<format_array>digital,cd,vinyl</format_array>
<tags>tag1,tag2,tag3</tags>
</track>
<track number='2' item_code='458' product_code='644'>
<category>Example Category</category>
<cat_no>INZU01</cat_no>
<release_date>283942489</release_date>
<short_description>Free text description</short_description>
<long_description>Free text description</long_description>
<image>http://media.inzu.net/user/images/458_thumb.png</image>
<image_large>http://media.inzu.net/user/images/458_img.png</image_large>
<bundle_title>The bundle title</bundle_title>
<bundle_artist>The bundle artist</bundle_artist>
<title>Example Title Track 2</title>
<artists>Artists list</artists>
<credits>Credits</credits>
<minutes>6</minutes>
<seconds>11</seconds>
<year>2097</year>
<preview>http://media.inzu.net/user/prv_458.mp3</preview>
<price_uk>0.99</price_uk>
<price_us>1.99</price_us>
<sale>true</sale>
<format>digital</format>
<format_array>digital,cd,vinyl</format_array>
<tags>tag1,tag2,tag3</tags>
</track>
</product>
</inzu>

Cart Feed

This feed is used as quick reference for a users shopping cart to save you having to store all the item info.

Contents

Product Title - 40 characters
Author - 40 characters
Description - 300 characters
Image - Max width 200 pixels
Image Large - Max width 600 pixels, Max height 800 pixels
Preview - jpg,gif,png,mov,mpg,wmv,avi,mp3,wav,pdf,ppt,doc
Price GBP - Decimal 00.00
Price USD - Decimal 00.00
Shipping N.America GBP - Decimal 00.00
Shipping S.America GBP - Decimal 00.00
Shipping Europe GBP - Decimal 00.00
Shipping Europe GBP - Decimal 00.00
Shipping N.America USD - Decimal 00.00
Shipping S.America USD - Decimal 00.00
Shipping Europe USD - Decimal 00.00
Shipping Europe USD - Decimal 00.00
Quantity - Integer

XML Call

http://api.inzu.net/xml/cart/cart.xml?api_key={$key}&api_pass={$pass}

Call Parameters

item_array (varchar) - display a selection of items based on a comma delimited array e.g 34,466,657

Example:
http://api.inzu.net/xml/cart/cart.xml?api_key={$key}&api_pass={$pass}&item_array=54,54

XML Structure

<?xml version="1.0" encoding="UTF-8" ?>
<inzu>
<product product_code='347'>
<item item_code='54'>
<title>Example Title 1</title>
<author>Example Author 1</author>
<description>Free text description</description>
<image>http://media.inzu.net/user/images/54_thumb.png</image>
<image_large>http://media.inzu.net/user/images/54_img.png</image_large>
<preview>http://media.inzu.net/user/previews/prv_54.jpg</preview>
<price_uk>17.99</price_uk>
<price_us>24.99</price_us>
<shipping_namerica_uk>1.99</shipping_namerica_uk>
<shipping_samerica_uk>1.99</shipping_samerica_uk>
<shipping_europe_uk>1.99</shipping_europe_uk>
<shipping_world_uk>1.99</shipping_world_uk>
<shipping_namerica_us>2.99</shipping_namerica_us>
<shipping_samerica_us>2.99</shipping_samerica_us>
<shipping_europe_us>2.99</shipping_europe_us>
<shipping_world_us>2.99</shipping_world_us>
<quantity>2</quantity>
</item>
</product>
</inzu>