curl --request POST \
--url https://api.example.com/admin/stories/filter \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"languageID": "1",
"categoryID": 123,
"aiModelTypeID": 123,
"startDate": "2023-05-21",
"endDate": "2023-12-21",
"page": 123,
"pageSize": 123
}
'{
"success": true,
"data": "<unknown>"
}Filter the stories
curl --request POST \
--url https://api.example.com/admin/stories/filter \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"languageID": "1",
"categoryID": 123,
"aiModelTypeID": 123,
"startDate": "2023-05-21",
"endDate": "2023-12-21",
"page": 123,
"pageSize": 123
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.