Filter By Private party on Car catagory
Hello, I'm trying to filter by private seller on the car category, but i can't seem to find a filter that'll work.
I'm using ebay-node-api and here's my code
const data = await ebay.findItemsByCategory({
categoryId: "6001",
limit: 10, // Limiting to 10 for demonstration. Adjust as required.
// get newest items first
sortOrder: "StartTimeNewest",
// filter out autions
filter: [
{
name: "ListingType",
value: "FixedPrice"
},
// for sale by private party only 0By=Private%2520Seller%7C%21
{
name: "ForSaleBy",
value: "PrivateSeller",
},
],
});
williaroger38
Posted 2 years ago
0 comments