All Products
Search
Document Center

DataWorks:DsgQueryDefaultTemplates

Last Updated:Oct 17, 2024

Queries a list of available sensitive field type templates and the data masking rules supported by the templates. You can refer to the response parameters of this operation to configure a data masking rule.

Debugging

You can run this interface directly in OpenAPI Explorer, saving you the trouble of calculating signatures. After running successfully, OpenAPI Explorer can automatically generate SDK code samples.

Authorization information

There is currently no authorization information disclosed in the API.

Request parameters

ParameterTypeRequiredDescriptionExample
SceneIdintegerYes

The ID of the level-2 data masking scenario. You can call the DsgSceneQuerySceneListByName operation to query the list of IDs.

123

Response parameters

ParameterTypeDescriptionExample
object

OpenApiResultModel<List>

Successboolean

Indicates whether the request was successful. Valid values:

  • true
  • false
true
ErrorCodestring

The error code.

1029030003
ErrorMessagestring

The error message.

param error
HttpStatusCodeinteger

The HTTP status code.

400
Dataarray<object>

The data returned.

Dataobject
DataTypestring

The sensitive field type.

phone
DesensPlanTemplateobject

The supported data masking methods and parameter descriptions.

array<object>

The information about the data masking method and parameters.

Itemobject
Namestring

The name of the data masking method.

hash
SupportWaterMarkboolean

Indicates whether a watermark is added. Valid values:

  • true: allow
  • false: disallow
true
ExtParamTemplatearray

The data masking parameters and their descriptions.

ExtParamTemplateany

The supported data masking rules and related parameter configurations, which are in the JSON format. The returned results are used to describe the parameters of a data masking rule. You cannot use the results as input parameters to create or modify a data masking rule.

{ "key": "algo", "valueEnum": [ "MD5", "SHA256", "SHA512", "SM3" ], "valueType": "string" }, { "key": "salt", "valueEnum": [ 1, 2, 3, 4, 5, 6, 7, 8, 9 ], "valueType": "int" }
RequestIdstring

The request ID. You can use the ID to locate logs and troubleshoot issues.

102400001

Examples

Sample success responses

JSONformat

{
  "Success": true,
  "ErrorCode": "1029030003",
  "ErrorMessage": "param error",
  "HttpStatusCode": 400,
  "Data": [
    {
      "DataType": "phone",
      "DesensPlanTemplate": {
        "key": [
          {
            "Name": "hash",
            "SupportWaterMark": true,
            "ExtParamTemplate": [
              "{                     \"key\": \"algo\",                     \"valueEnum\": [                         \"MD5\",                         \"SHA256\",                         \"SHA512\",                         \"SM3\"                     ],                     \"valueType\": \"string\"                 },                 {                     \"key\": \"salt\",                     \"valueEnum\": [                         1,                         2,                         3,                         4,                         5,                         6,                         7,                         8,                         9                     ],                     \"valueType\": \"int\"                 }"
            ]
          }
        ]
      }
    }
  ],
  "RequestId": "102400001"
}

Error codes

HTTP status codeError codeError messageDescription
400DESENSTEMPLATE.SCENE.ERRORScene ID does not exist.Scene ID does not exist.
400DESENSTEMPLATE.SCENELEVEL.ERRORThe scene is not a secondary scene.The scene is not a secondary scene.
400PARAMS.ERRORparam error.-
403PERMISSION.DENIED.ERRORPermission deniedInsufficient permissions.
500UNKNOWN.ERRORunknown error.Unknown error.

For a list of error codes, visit the Service error codes.