curl --request POST \
--url https://api.example.com/stack/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"stackCode": null,
"searchText": "",
"languageId": 1,
"page": 1,
"pageSize": 10
}
'{
"success": true,
"data": "<unknown>"
}Searches within an iser’s stacks for a given text or specific stack itself. This is the returned concat feed for the given set of search params, some being optional.
curl --request POST \
--url https://api.example.com/stack/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"stackCode": null,
"searchText": "",
"languageId": 1,
"page": 1,
"pageSize": 10
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.