Skip to content

Remove words from password dictionary

Request

Remove words from password dictionary for a specific application

Security
ClientAccessToken
Path
appIdstringrequired
Bodyapplication/jsonrequired
wordsArray of stringsrequired

List of words

curl -i -X PUT \
  'https://api.sbx.transmitsecurity.io/cis/v1/applications/{appId}/password-dictionary/remove' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "words": [
      "string"
    ]
  }'

Responses

Bodyapplication/json
resultobjectrequired
Response
{ "result": { "tenant_id": "string", "app_id": "string", "words": [] } }