curl --request POST \
--url https://api.example.com/admin/explore-group/selected-items \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"exploreGroupID": 14,
"languageID": 1,
"searchText": null,
"page": 1,
"pageSize": 10,
"sortColumn": "UsageCount|Sequence|EntityID|EntityTypeTitle|CreatedDate",
"sortOrder": "DESC"
}
'{
"success": true,
"data": "<unknown>"
}Gets the list of items within a specific ExploreGroup.
curl --request POST \
--url https://api.example.com/admin/explore-group/selected-items \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"exploreGroupID": 14,
"languageID": 1,
"searchText": null,
"page": 1,
"pageSize": 10,
"sortColumn": "UsageCount|Sequence|EntityID|EntityTypeTitle|CreatedDate",
"sortOrder": "DESC"
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.