Skip to main content
Delphix

Deleting a Masking Application Using the API Client (KBA8041)

 

 

KBA

KBA# 8041

Applicable Delphix Versions

Click here to view the versions of the Delphix engine to which this article applies
Major Release All Sub Releases
6.0 6.0.0.0, 6.0.1.0, 6.0.1.1, 6.0.2.0, 6.0.2.1, 6.0.3.0, 6.0.3.1, 6.0.4.0, 6.0.4.1, 6.0.4.2, 6.0.5.0, 6.0.6.0, 6.0.6.1, 6.0.7.0, 6.0.8.0, 6.0.8.1, 6.0.9.0, 6.0.10.0, 6.0.10.1

How to Delete a Masking Application Using the API Client

If you no longer require a Masking Application and would like to remove it from view in the Masking GUI, it is possible to do so without Delphix Support assistance via the Masking API client.

To Delete a Masking Application

If you are unfamiliar with the Masking API client, please refer to this article which describes Logging into and Connecting to the Masking API Client.

  1. Determine the application id of the application to be deleted by using the GET /applications endpoint:
    clipboard_eadfbe307bfc5f696e386422348bdcd6e.png
  2. In the below example, Application "User Info" has id 3:
{
  "_pageInfo": {
    "numberOnPage": 2,
    "total": 2   
  },   
    "responseList": [     
    {       
      "applicationId": 2,       
      "applicationName": "Credit Cards"     
    },
    {       
      "applicationId": 3,
      "applicationName": "User Info"     
    }   
  ] 
}
  1. Delete the unwanted Application using the DELETE /applications/{applicationId} endpoint:
    clipboard_e9a74aa76839fcb28336905b22fab359f.png

Related Articles

The following articles may provide more information or related information to this article: