You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*db_name* | `str` | The name of the database where the data will be stored. The name must not already be in use by another database.
660
+
*steps* | `list[dict]` | A list of step dicts.
661
+
*description* | `str` | The description of the model.
662
+
*webhook_url* | `str` | An URL that will be called when an action is triggered.
663
+
*custom_fields* | `[]`| A list of custom_field dicts that represent user defined fields that come with the input data and that will be saved. It does not include the mandatory `text` field.
664
+
*sources* | `{}` | An object that represents the data sources of the workflow.
|*model_id*|`str`|Workflow ID. It always starts with `'wf'`, for example, `'wf_oJNMkt2V'`. |
738
+
|*name*|`str`|The name of the new step. |
739
+
|*step_model_id*|`str`|The ID of the MonkeyLearn model that will run in this step. Must be an existing classifier or extractor. |
740
+
|*input*|`str`|Where the input text to use in this step comes from. It can be either the name of a step or `input_data` (the default), which means that the input will be the original text. |
741
+
|*conditions*|`list[dict]`|A list of condition dicts that indicate whether this step should execute or not. All the conditions in the list must be true for the step to execute. |
742
+
|*retry_if_throttled*|`bool`|If a request is [throttled](https://monkeylearn.com/api/v3/#query-limits), sleep and retry the request. |
per_page | `int` | The maximum number of items the page should have. The maximum allowed value is `50`.
823
+
batch_id | `int` | The ID of the batch to retrieve. If unspecified, data from all batches is shown.
824
+
is_processed | `bool` | Whether to return data that has been processed or data that has not been processed yet. If unspecified, both are shown indistinctly.
825
+
sent_to_process_date_from | `str` | An [ISO formatted date](https://en.wikipedia.org/wiki/ISO_8601) which specifies the oldest `sent_date` of the data to be retrieved.
826
+
sent_to_process_date_to | `str` | An [ISO formatted date](https://en.wikipedia.org/wiki/ISO_8601) which specifies the most recent `sent_date` of the data to be retrieved.
0 commit comments