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.
| 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" : "..."
}
© 2001-2019 Fair Isaac Corporation. All rights reserved. This documentation is the property of Fair Isaac Corporation (“FICO”). Receipt or possession of this documentation does not convey rights to disclose, reproduce, make derivative works, use, or allow others to use it except solely for internal evaluation purposes to determine whether to purchase a license to the software described in this documentation, or as otherwise set forth in a written software license agreement between you and FICO (or a FICO affiliate). Use of this documentation and the software described in it must conform strictly to the foregoing permitted uses, and no other use is permitted.
