Transformations
Get a transformation
Reads one transformation definition, including source and target descriptors, step-based mappings, expression text, and metadata used by the runtime mapper.
get/transformations/{transformationId}
Path parameters
transformationIdstring uuid required
Stable identifier for a transformation definition.
Example:0e60abcc-41b5-4cc5-bec2-f0047f129341
Stable identifier of a reusable transformation between resource descriptors.
Response
Transformation.
Example response
{
"transformationId": "0e60abcc-41b5-4cc5-bec2-f0047f129341",
"displayName": "Employee profile to license invitation",
"description": "Maps HR employee attributes into the invitation payload used by the license issuance flow.",
"language": "ATTRIBUTE_MAPPER",
"sourceDescriptorId": "41436f49-040c-4f5f-9c7f-657f43762e2b",
"targetDescriptorId": "7a44f0de-e4d9-44ef-9211-372433933a88",
"steps": [
{
"stepType": "MAP",
"sourcePath": "email",
"targetPath": "recipient.email"
},
{
"stepType": "MAP",
"sourcePath": "license_type",
"targetPath": "credential.licenseType"
}
],
"createdAt": "2026-06-18T09:35:00Z",
"updatedAt": "2026-06-18T09:40:00Z"
}