For the complete documentation index, see llms.txt. This page is also available as Markdown.

Custom Maskings

Manage custom maskings.

List custom maskings

get

Lists all custom maskings.

Authorizations
AuthorizationstringRequired

Collibra REST API authentication using Basic Authentication.

Query parameters
limitinteger · min: 1 · max: 500Optional

This is the maximum number of results that may be returned. Fewer may be returned than the value of limit.

Do not depend on the number of results being fewer than the limit value to indicate that your query reached the end of the list of data, use the absence of after (see Cursors) instead. For example, if you set limit to 10 and 9 results are returned, there may be more data available.

If not set, the default limit (limit = 25) will be used. The maximum value for this parameter is 500.

Default: 25
afterstring · nullableOptional

This is the cursor that points to the end of the page of data that has been returned.

Responses
200

The list of custom maskings.

application/json

A page of custom maskings.

get/customMaskings

Add a new custom masking

post

Adds a new custom masking.

Authorizations
AuthorizationstringRequired

Collibra REST API authentication using Basic Authentication.

Body
namestringRequired

The name of the custom masking.

Example: myCustomHashing
Responses
201

The custom masking has been added.

application/json
post/customMaskings

Retrieve a custom masking

get

Returns information about the custom masking with the specified ID.

Authorizations
AuthorizationstringRequired

Collibra REST API authentication using Basic Authentication.

Path parameters
idstring · uuidRequired

The universally unique identifier (UUID) of the custom masking.

Responses
200

The custom masking with the specified ID.

application/json
namestringRequired

The name of the custom masking.

Example: myCustomHashing
idstring · uuidRequired

The ID of the masking.

Example: fc422bf7-b873-49fc-a00e-ec550a3e9aa5
createdBystring · uuidRequired

ID of the Collibra user who created this custom mapping.

Example: 19d09600-73ee-4be9-bff3-5e99f5c074f6
createdOninteger · int64Required

The timestamp of when this custom mapping was created

Example: 1688024863616
lastModifiedBystring · uuidRequired

ID of the Collibra user who last updated this custom mapping.

Example: 19d09600-73ee-4be9-bff3-5e99f5c074f6
lastModifiedOninteger · int64Required

The timestamp of when this custom mapping was last updated.

Example: 1688024863616
get/customMaskings/{id}

Delete a custom masking

delete

Deletes the custom masking with the specified ID.

Authorizations
AuthorizationstringRequired

Collibra REST API authentication using Basic Authentication.

Path parameters
idstring · uuidRequired

The universally unique identifier (UUID) of the custom masking.

Responses
204

The custom masking has been deleted.

No content

delete/customMaskings/{id}

No content

Update a custom masking

patch

Updates the custom masking with the specified ID.

Authorizations
AuthorizationstringRequired

Collibra REST API authentication using Basic Authentication.

Path parameters
idstring · uuidRequired

The universally unique identifier (UUID) of the custom masking.

Body
namestringOptional

The name of the custom masking.

Example: myCustomHashing
Responses
200

The custom masking has been updated.

application/json
namestringRequired

The name of the custom masking.

Example: myCustomHashing
idstring · uuidRequired

The ID of the masking.

Example: fc422bf7-b873-49fc-a00e-ec550a3e9aa5
createdBystring · uuidRequired

ID of the Collibra user who created this custom mapping.

Example: 19d09600-73ee-4be9-bff3-5e99f5c074f6
createdOninteger · int64Required

The timestamp of when this custom mapping was created

Example: 1688024863616
lastModifiedBystring · uuidRequired

ID of the Collibra user who last updated this custom mapping.

Example: 19d09600-73ee-4be9-bff3-5e99f5c074f6
lastModifiedOninteger · int64Required

The timestamp of when this custom mapping was last updated.

Example: 1688024863616
patch/customMaskings/{id}

Last updated

Was this helpful?