Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Marketplace/REST"

(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...)
 
(Update for page migration)
 
(43 intermediate revisions by 9 users not shown)
Line 1: Line 1:
== Eclipse Marketplace REST API Documentation  ==
+
Content describing usage of Eclipse Foundation marketplace has moved, see the new [https://webdev.eclipse.org/docs/api/marketplace-rest-api/ Marketplace REST API spec page].
 
+
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 <br>
+
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.
+

Latest revision as of 10:42, 27 March 2024

Content describing usage of Eclipse Foundation marketplace has moved, see the new Marketplace REST API spec page.

Back to the top