Skip to main content
POST
/
admin
/
word
/
rules
/
filter
Gets the list supplied words usage rule
curl --request POST \
  --url https://api.example.com/admin/word/rules/filter \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "wordIDs": [
    1,
    2,
    3,
    4,
    5
  ],
  "forViewingInLanguageID": 1,
  "applyToAllLanguages": null,
  "languageIDs": [
    1,
    2,
    3,
    4,
    5
  ],
  "positionUsageTypeIDs": [
    1,
    2,
    3,
    4,
    5
  ],
  "actionTypeIDs": [
    1,
    2,
    3,
    4,
    5
  ],
  "authorIserIDs": [
    702,
    784,
    683
  ],
  "wordCandidateListID": null,
  "searchText": null,
  "page": 1,
  "pageSize": 10
}
'
{
  "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
wordIDs
integer<int32>[] | null
forViewingInLanguageID
integer<int32> | null
default:1

the language that the caller wishes to review the merge in. This changes the word of the language itself in the result data.

applyToAllLanguages
boolean | null
languageIDs
integer<int32>[] | null
positionUsageTypeIDs
integer<int32>[] | null
actionTypeIDs
integer<int32>[] | null
authorIserIDs
integer<int32>[] | null
wordCandidateListID
integer<int32> | null
searchText
string | null
page
integer<int32>
default:1
pageSize
integer<int32>
default:10

Response

Success

success
boolean
data
unknown