v1
latestOpenAPI 3.0.02026-08-064311,0881.3 MBdataMaskingManagement
Get a list of data masking rules.
Get a list of all data masking rules for the current organization. The response is paginated with a default limit of 100 rules per page.
get/v1/dataMaskingRules
Query parameters
limitinteger
Limit the number of data masking rules returned in the response. The number of rules returned may be less than the limit.
tokenstring
Continuation token to get the next page of results. A page object with the next continuation token is returned in the response body. Subsequent GET requests should specify the continuation token to get the next page of results.
Response
A paginated list of data masking rules.
Example response
{
"data": [
{
"description": "Masks email addresses in application logs",
"regexPattern": "\\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,6}\\b",
"maskString": "EMAIL_REDACTED",
"name": "Email Masking",
"createdAt": "2018-10-16T09:10:00Z",
"createdBy": "0000000006743FDD",
"modifiedAt": "2018-10-16T09:10:00Z",
"modifiedBy": "0000000006743FE8",
"id": "00000000FF42A0C3"
}
]
}