Initializing help system before first use

ExecutionRequestData

Container for desired inputs for the execution. The input file is specified as either text (in inputText) or binary (in inputBase64) or neither, and any parameters as an enclosed map.

Properties
name data type description
inputBase64 string The input data as Base64-encoded binary data. If your input data is a string, use inputText instead. You should only set one of inputText and inputBase64, not both.
inputText string The input data as text. If your input data is not a string, use inputBase64 instead. You should only set one of inputText and inputBase64, not both.
parameters object The model parameters, or null to not set additional parameters.

Neither key nor value should be null

Example

{
  "parameters" : {
    "property1" : "...",
    "property2" : "..."
  },
  "inputText" : "...",
  "inputBase64" : "..."
}