Schema for the Continuous Compliance Engine API
Masking API (5.1.43)
- Mock serverhttps://help-api.delphix.com/_mock/continuous-compliance-engine/2025.3.0.0/cc-engine-apis-2025.3.0.0/file-formats
- https://help-api.delphix.com/masking/api/v5.1.43/file-formats
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://help-api.delphix.com/_mock/continuous-compliance-engine/2025.3.0.0/cc-engine-apis-2025.3.0.0/file-formats?page_number=1&page_size=0' \
-H 'Authorization: YOUR_API_KEY_HERE'{ "_pageInfo": { "numberOnPage": 0, "total": 0 }, "responseList": [ { … } ] }
Request
WARNING: The generated curl command is incorrect, so please refer to the Masking API guide for instructions on how to upload files through the API
The file format to be uploaded. The logical name of the file format will be exactly the name of this uploaded file
- Mock serverhttps://help-api.delphix.com/_mock/continuous-compliance-engine/2025.3.0.0/cc-engine-apis-2025.3.0.0/file-formats
- https://help-api.delphix.com/masking/api/v5.1.43/file-formats
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://help-api.delphix.com/_mock/continuous-compliance-engine/2025.3.0.0/cc-engine-apis-2025.3.0.0/file-formats \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: multipart/form-data' \
-F fileFormat=string \
-F fileFormatType=DELIMITEDSuccess
The ID number of the file format. This field is auto-generated by the Masking Engine.
The name of the file format, as inferred from the uploaded file.
The type of file that this file format describes.
This flag indicates if the file format is associated with a file to be read as whole or line-by-line (Only for FIXED_WIDTH file type). For example, if the whole file masking is true, then the whole file will be read as a single record, rather than reading it line by line.
{ "fileFormatId": "3", "fileFormatName": "DelimitedFileFormat.txt", "fileFormatType": "DELIMITED", "header": 2, "footer": 1 }
- Mock serverhttps://help-api.delphix.com/_mock/continuous-compliance-engine/2025.3.0.0/cc-engine-apis-2025.3.0.0/file-formats/{fileFormatId}
- https://help-api.delphix.com/masking/api/v5.1.43/file-formats/{fileFormatId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://help-api.delphix.com/_mock/continuous-compliance-engine/2025.3.0.0/cc-engine-apis-2025.3.0.0/file-formats/{fileFormatId}' \
-H 'Authorization: YOUR_API_KEY_HERE'Success
The ID number of the file format. This field is auto-generated by the Masking Engine.
The name of the file format, as inferred from the uploaded file.
The type of file that this file format describes.
This flag indicates if the file format is associated with a file to be read as whole or line-by-line (Only for FIXED_WIDTH file type). For example, if the whole file masking is true, then the whole file will be read as a single record, rather than reading it line by line.
{ "fileFormatId": "3", "fileFormatName": "DelimitedFileFormat.txt", "fileFormatType": "DELIMITED", "header": 2, "footer": 1 }
- Mock serverhttps://help-api.delphix.com/_mock/continuous-compliance-engine/2025.3.0.0/cc-engine-apis-2025.3.0.0/file-formats/{fileFormatId}
- https://help-api.delphix.com/masking/api/v5.1.43/file-formats/{fileFormatId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://help-api.delphix.com/_mock/continuous-compliance-engine/2025.3.0.0/cc-engine-apis-2025.3.0.0/file-formats/{fileFormatId}' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"fileFormatId": "3",
"fileFormatName": "DelimitedFileFormat.txt",
"fileFormatType": "DELIMITED",
"header": 2,
"footer": 1
}'Success
The ID number of the file format. This field is auto-generated by the Masking Engine.
The name of the file format, as inferred from the uploaded file.
The type of file that this file format describes.
This flag indicates if the file format is associated with a file to be read as whole or line-by-line (Only for FIXED_WIDTH file type). For example, if the whole file masking is true, then the whole file will be read as a single record, rather than reading it line by line.
{ "fileFormatId": "3", "fileFormatName": "DelimitedFileFormat.txt", "fileFormatType": "DELIMITED", "header": 2, "footer": 1 }
- Mock serverhttps://help-api.delphix.com/_mock/continuous-compliance-engine/2025.3.0.0/cc-engine-apis-2025.3.0.0/file-formats/{fileFormatId}
- https://help-api.delphix.com/masking/api/v5.1.43/file-formats/{fileFormatId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://help-api.delphix.com/_mock/continuous-compliance-engine/2025.3.0.0/cc-engine-apis-2025.3.0.0/file-formats/{fileFormatId}' \
-H 'Authorization: YOUR_API_KEY_HERE'