Summary
          Runs a transformation.
          Description
          Runs a transformation.
          Route
          POST /transformations/:id
          Roles
          
            admin
other
readonly
apiread
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | id | string | yes | - | 
    | incoming | object | yes | - | 
    | options | object | yes | - | 
            
          
          
            Copied to Clipboard
            
            {
  "incoming": null,
  "options": null
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "incoming": {
      "type": "object",
      "properties": {},
      "required": [
        "incoming"
      ],
      "additionalProperties": false
    },
    "options": {
      "type": "object",
      "properties": {},
      "required": [
        "options"
      ],
      "additionalProperties": false
    }
  },
  "required": [
    "incoming",
    "options"
  ],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | result | object | Transformation run result. | 
            
          
          
            Copied to Clipboard
            
            {
  "result": true
}
           
          
            Copied to Clipboard
            
            {
  "description": "Transformation run result.",
  "type": "object",
  "properties": {
    "result": true
  },
  "required": [
    "result"
  ],
  "additionalProperties": false
}