Unqork Transforms API
The following endpoints are available to "Administrator" users only. Transforms should expect the following input data structure: ***NJK (in):*** Input includes only the `data.rawData` part of the submission object. ``` { "firstName": "Al" } ``` ***NJK (out):*** Input includes all of the top-level properties of the submission object, except `data` here refers to `data.rawData`. ``` { "data": { "firstName": "Al" }, "metadata": {}, "created": "2018-01-01T00:00:00.000Z", ... } ``` ***XML (out):*** Input includes all of the top-level properties of the submission object, except `data` here refers to `data.rawData`. ``` Al 2018-01-01T00:00:00.000Z ... ```