Syntax

listMarketplaceEntries( sort_by )

Lists all the marketplace data of the vendor.

Access rights

Read access required.

Arguments

entry_id – the ID of the marketplace entry (not of the product)

Return data

The data of all marketplace entries including the statistical numbers are returned. The same data as for the getMarketPlaceEntry() is returned for each entry.

Array
(
    [api_version] => 1.010
    [current_time] => 2015-03-05 18:45:14
    [result] => success
    [data] => Array
        (
            [entries] => Array
                (
                    [0] => Array
                        (
                            [id] => 1
                            [stats_stars] => 0.83
                            ...
                        )

                    [1] => Array
                        (
                            [id] => 22
                            [stats_stars] => 1.25
                            ....
                        )

                    [2] => Array
                        (
                            [id] => 23
                            [stats_stars] => 3.21
                            ....
                        )

                )

        )

)