This API possibility to transform string with python code.
Transformation API (1)
Download OpenAPI description
Languages
Servers
Production
https://api.cdq.com/transformation/rest/
- Production
https://api.cdq.com/transformation/rest/datatransformationschemas
- cURL
- Java
- JavaScript
- Python
- Node.js
curl -i -X POST \
https://api.cdq.com/transformation/rest/datatransformationschemas \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"jsonSchema": {},
"name": "My schema"
}'
Response
application/json
{ "jsonSchema": {}, "name": "My schema", "id": "66432427ba96dd27add2ea34", "createdBy": "76248934691294444", "createdAt": "2025-10-07T05:40:51Z", "modifiedBy": "76248934691294444", "modifiedAt": "2025-10-07T05:40:51Z" }
- Production
https://api.cdq.com/transformation/rest/datatransformationschemas
- cURL
- Java
- JavaScript
- Python
- Node.js
curl -i -X GET \
https://api.cdq.com/transformation/rest/datatransformationschemas \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
Response
application/json
{ "startAfter": "5712566172571652", "nextStartAfter": "5712566172571652", "total": "67", "values": [ { … } ] }
- Production
https://api.cdq.com/transformation/rest/datatransformationschemas/{id}
- cURL
- Java
- JavaScript
- Python
- Node.js
curl -i -X GET \
https://api.cdq.com/transformation/rest/datatransformationschemas/66432427ba96dd27add2ea34 \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
Response
application/json
{ "jsonSchema": {}, "name": "My schema", "id": "66432427ba96dd27add2ea34", "createdBy": "76248934691294444", "createdAt": "2025-10-07T05:40:51Z", "modifiedBy": "76248934691294444", "modifiedAt": "2025-10-07T05:40:51Z" }
- Production
https://api.cdq.com/transformation/rest/datatransformationschemas/{id}
- cURL
- Java
- JavaScript
- Python
- Node.js
curl -i -X PUT \
https://api.cdq.com/transformation/rest/datatransformationschemas/66432427ba96dd27add2ea34 \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"jsonSchema": {},
"name": "My schema"
}'
Response
application/json
{ "jsonSchema": {}, "name": "My schema", "id": "66432427ba96dd27add2ea34", "createdBy": "76248934691294444", "createdAt": "2025-10-07T05:40:51Z", "modifiedBy": "76248934691294444", "modifiedAt": "2025-10-07T05:40:51Z" }
- Production
https://api.cdq.com/transformation/rest/datatransformationschemas/{id}
- cURL
- Java
- JavaScript
- Python
- Node.js
curl -i -X DELETE \
https://api.cdq.com/transformation/rest/datatransformationschemas/66432427ba96dd27add2ea34 \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
Response
application/json
{ "id": "66432427ba96dd27add2ea34" }