curl --request POST \
--url https://api.example.com/stack/list \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"searchText": "<string>"
}
'{
"success": true,
"data": "<unknown>"
}List all stacks for the current iser, and allows you to filter that list by a text string as well.
curl --request POST \
--url https://api.example.com/stack/list \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"searchText": "<string>"
}
'{
"success": true,
"data": "<unknown>"
}