GEThttps://api.transmutify.io/v1/schemas/{schema}

Show a target schema defined for the caller's organization

Requires a bearer token. Learn more about authentication

Path parameters

schemastring required

Responses

dataobject required
idstring required

Stable schema identifier. Pass this as `schema_id` when creating a transformation run.

namestring required

User-defined name for this schema.

fieldsobject required

Map of target field definitions keyed by field name. Each entry contains `description`, `data_type`, `is_required`, and optional `label`.

created_atstring | null required

ISO-8601 UTC timestamp the schema was created.

updated_atstring | null required

ISO-8601 UTC timestamp the schema was last updated.

cURL
curl -X GET 'https://api.transmutify.io/v1/schemas/<transformation-id>' \
  -H 'Authorization: Bearer <api-key>'
Response · 200
{
  "data": {
    "id": "019dc458-710e-73a0-9b5a-bb7d6f7ddc42",
    "name": "Employee import",
    "fields": {
      "employee_id": {
        "label": "Employee ID",
        "description": "Stable employee identifier from the source HR system.",
        "data_type": "string",
        "is_required": true,
        "transformations": {
          "trim_whitespace": {
            "enabled": true
          },
          "uppercase": {
            "enabled": true
          }
        }
      },
      "work_email": {
        "label": "Work Email",
        "description": "Employee work email address.",
        "data_type": "email",
        "is_required": true,
        "transformations": {
          "trim_whitespace": {
            "enabled": true
          },
          "lowercase": {
            "enabled": true
          }
        }
      },
      "start_date": {
        "label": "Start Date",
        "description": "First day of employment.",
        "data_type": "date",
        "format": "Y-m-d",
        "is_required": false,
        "transformations": {
          "date_format": {
            "enabled": true,
            "from": "m/d/Y",
            "to": "Y-m-d"
          }
        }
      }
    },
    "created_at": "2026-01-10T09:10:00Z",
    "updated_at": "2026-01-10T09:10:00Z"
  }
}