# Poll Transformation Job After you have started a transformation job, you will receive a job id in the response. Use this ID to poll for the status of the job using this endpoint. Once the status is FINISHED the transformation is done, and you are able to verify the result in your storage. Endpoint: GET /jobs/transformationjobs/{id} Version: 5 Security: apiKey ## Path parameters: - `id` (string, required) ID of the transformation job. Example: "35f23c03-1c22-45fe-9484-3ffe769325de" ## Response 200 fields (application/json): - `id` (string) Unique identifier of a job. Example: "35f23c03-1c22-45fe-9484-3ffe769325de" - `name` (string) Name of a Job. Example: "Process vendor data." - `description` (string) Detailed description of a Job. Example: "I started this job to improve quality of our data." - `createdBy` (string) Creator of a resource. Example: "76248934691294444" - `createdAt` (string) Date of creation (ISO 8601-compliant). Example: "2025-09-10T10:12:36Z" - `modifiedAt` (string) Date of modification (ISO 8601-compliant). Example: "2025-09-10T10:12:36Z" - `progress` (integer) Progress (%) of the job. Example: "77" - `status` (string) Job execution status. Enum: "ARCHIVED", "UNKNOWN", "CREATED", "PERSISTED", "SCHEDULED", "WAITING", "COULDNT_START", "RUNNING", "FINISHED", "DIED", "CANCELED", "FAILED" - `statusMessage` (string) The status message contains the error message if the transformation job failed. Example: "DataSource [5e2874fb8d2a7400011acee1] has no DataMapperDefinition attached and no alternative dataMapperDefinitionId was passed to the job" - `storageId` (string) Unique identifier of the Storage. Example: "72d6900fce6b326088f5d9d91049e3e6" - `dataSourceId` (string) Unique identifier for a Data Source of the Storage. Example: "648824a691d8d2503d65103e" - `dataMapperDefinitionId` (string) ID of related Data Mapper Definition that is used for mapping data of this Business Partner Storage. Example: "6440dba32b30176c5917b1b7" - `dataTransformationDefinitionId` (string) Unique identifier for a data transformation definition. Example: "SAP.ODM" - `featuresOn` (array) Example: ["UPSERT_CHANGES_ONLY"] - `result` (object) The result of a Transformation Job. - `result.statistics` (object) The statistics of a transformation job. - `result.statistics.numberOfRecords` (integer) Number of records in the Business Partner Storage. Example: "500" - `result.statistics.numberOfFailed` (integer) The number of failed transformation. Example: "10" - `domain` (string) Domain of a Business Partner Storage. Example: "BusinessPartner"