I'm currently fetching below API from http://localhost:3009/api/get-products/ . How do I switch between 10 categories and search using other keywords ?
app.get("/api/get-products",async (req, res) => {
client.execute('affiliate.product.query', {
'app_signature':'mcc',
'category_ids':'111,222,333', <--- query different categories
'keywords':'shirt', <--- query different search keyword
'target_currency':'USD',
'target_language':'EN',
}