Closed that1guy closed 9 years ago
The grouping lookup specifies the grouping in the URL, but not supplied via query string: https://staging-posting-api.hashtagsell.com/v1/groupings/<code_goes_here>
(see docs: https://staging-posting-api.hashtagsell.com/v1/docs#groupings-groupings)
The challenge here is that you are using a sub grouping (SELE
) - those are not returned from the API at this time, only the top level groupings are.
Changing tag to enhancement and will implement code to return sub-categories as well.
Implemented fix - when a sub-category is supplied in the URL, the sub-category and grouping are both returned:
https://staging-posting-api.hashtagsell.com/v1/groupings/SELE
{
"code": "SSSS",
"name": "for sale",
"categories": [
{
"code": "SELE",
"name": "electronics and photo"
}
]
}
Query
Response is showing all categories unlike documentation suggests.