curl --request POST \
--url https://api.example.com/explore-group/items/add \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"exploreGroupID": 1,
"items": "[{ \"EntityTypeID\":\"1\",\"EntityID\":\"1\"}]"
}
'{
"success": true,
"data": "<unknown>"
}Saves items for a given Explore Group. This can save any number of items (multiple) based on the Entity Type ID and Entity ID. Note that only 4 types are possible: Categories, Topics, Words, and Isers.
curl --request POST \
--url https://api.example.com/explore-group/items/add \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"exploreGroupID": 1,
"items": "[{ \"EntityTypeID\":\"1\",\"EntityID\":\"1\"}]"
}
'{
"success": true,
"data": "<unknown>"
}