List builds for the given model
models_list_builds(
id,
limit = NULL,
page_num = NULL,
order = NULL,
order_dir = NULL
)
An array containing the following fields:
integer, The ID of the model build.
string, The state of the model build.one of 'queued' 'running' 'succeeded' 'failed' or 'cancelled'.
string, The error, if any, returned by the build.
string, The name of the model build.
string, The time the model build was created.
string, A description of the model build.
number, A key metric for continuous models. Nil for other model types.
number, A key metric for continuous models. Nil for other model types.
number, A key metric for binary, multinomial, and ordinal models. Nil for other model types.
string, A string representing the full JSON output of the metadata for transformation of column names
string, A string representing the JSON output for the specified build. Only present when smaller than 10KB in size.
string, A URL representing the location of the full JSON output for the specified build.The URL link will be valid for 5 minutes.
integer required. The ID of the model.
integer optional. Number of results to return. Defaults to 20. Maximum allowed is 100.
integer optional. Page number of the results to return. Defaults to the first page, 1.
string optional. The field on which to order the result set. Defaults to id. Must be one of: id.
string optional. Direction in which to sort, either asc (ascending) or desc (descending) defaulting to desc.