Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Marketplace/REST

Revision as of 11:07, 9 November 2009 by Nathan.eclipse.org (Talk | contribs) (New page: == Eclipse Marketplace REST API Documentation == Marketplace has the ability to display the content of a listing in a simplified XML. Simply when viewing a Solutions Listing or a Train...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Eclipse Marketplace REST API Documentation

Marketplace has the ability to display the content of a listing in a simplified XML.

Simply when viewing a Solutions Listing or a Training and consulting listing add /xml to the url.

Example.

http://marketplace.eclipse.org/node/51/xml
http://marketplace.eclipse.org/node/1077/xml

Depending on the type of listing. Solution, or Training and Consulting you will receive different data back.


Special Fields

Most fields in the XML document are self explanitory. However there are a few fields that require explanation.

  • Type - this is the type of listing being returned. 'training' is for a Training and Consulting Listing, 'resource' is for a solutions listing.
  • Body - this field can and most likely contains HTML markup. This also applies to the Training and Consulting Fields (trainingdesc and consultingdesc)
  • Created - this field is when the listing was first created. It is the number of seconds since the epoch. See http://us.php.net/manual/en/function.time.php for more details.
  • Changed - this field is the last time this listing was changed. It is the number of seconds since the epoch. See http://us.php.net/manual/en/function.time.php for more details.
  • FoundationMember - this is a boolean field. 0 meaning No, 1 meaning Yes.

Back to the top