Logs & Data Masking
Moveworks masks data being logged in your API requests. When redacting, we leave the first and last character of sensitive information intact, and substitute the inner contents with a fixed number of*****
characters.- All headers are partially redacted For exampleWill be redacted as
Authorization: Bearer SECRET_TOKEN Content-Type: application/json
Authorization: B*****N Content-Type: a*****n
- Query parameters are partially value-redacted For exampleWill be redacted as
example.com/api/action?param1=value1¶m2=longerValue2
example.com/api/action?param1=v*****1¶m2=l*****2
- JSON request bodies are partially value-redacted For exampleWould be redacted as
{ "name": "John", "password": "secret", "info": { "email": "john@example.com", "phones": [ "123-456-7890", "987-654-3210" ] } }
{ "name": "J*****n", "password": "s*****t", "info": { "email": "j*****m", "phones": [ "1*****0", "9*****0" ] } }
- Non-JSON request bodies are fully redacted For exampleWould be redacted as
urlencodedKeyA=valueA&urlencodedKeyB=valueB
<REDACTED>
- The API endpoint is not redacted. You will be able to see the original base URL & the path.
- The API response is not redacted. You will be able to see the full result data returned.