Skip to main content
POST
/
admin
/
stories
/
filter
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>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
languageID
integer<int32> | null
default:1
categoryID
integer<int32> | null
aiModelTypeID
integer<int32> | null
startDate
string<date-time> | null
default:2023-05-21
endDate
string<date-time> | null
default:2023-12-21
page
integer<int32>
pageSize
integer<int32>

Response

Success

success
boolean
data
unknown