AutoML dataset predictions
Use your ML deployment to generate batch data in file format to predict future outcomes on new data.
Endpoints
- GET/v1/automl-predictions/{predictionId}/coordinate-shap
- POST/v1/automl-predictions/{predictionId}/jobs
- GET/v1/automl-predictions/{predictionId}/not-predicted-reasons
- GET/v1/automl-predictions/{predictionId}/predictions
- GET/v1/automl-predictions/{predictionId}/shap
- GET/v1/automl-predictions/{predictionId}/source
Returns a file containing the shapley values in coordinate form that are associated with a prediction ID.
Facts
Rate limit | Tier 1 (1000 requests per minute) |
Categories | build |
Query Parameters
- refIdstring
Path Parameters
- predictionIdstringRequired
The ID of the prediction configuration object that provides parameters to be applied when the prediction is produced.
Responses
200
text/csv
Stream of coordinate shap values returned successfully.
- text/csvany
400
application/json
Received a bad argument
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
401
application/json
Unauthorized
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
403
application/json
Access forbidden
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
404
application/json
Resource not found.
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
409
application/json
Resource conflict
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
503
application/json
Resource unavailable
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
curl "https://your-tenant.us.qlikcloud.com/api/v1/automl-predictions/{predictionId}/coordinate-shap" \
-H "Authorization: Bearer <access_token>"
const https = require('https')
const data = JSON.stringify("")
const options = {
'hostname': 'https://your-tenant.us.qlikcloud.com',
'port': 443,
'path': '/api/v1/automl-predictions/{predictionId}/coordinate-shap',
'method': 'GET',
'headers': {
'Authorization': 'Bearer <access_token>'
}
}
const req = https.request(options)
This API is not included yet in qlik-cli
Retrieve jobs that are associated with a prediction. Job with correlation type prediction
.
Facts
Rate limit | Tier 2 (100 requests per minute) |
Categories | build |
Path Parameters
- predictionIdstringRequired
The ID of the prediction configuration object that provides parameters to be applied when the prediction is produced.
Responses
200
OK Response
400
application/json
Received a bad argument
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
401
application/json
Unauthorized
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
403
application/json
Access forbidden
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
404
application/json
Resource not found.
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
409
application/json
Resource conflict
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
503
application/json
Resource unavailable
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
curl "https://your-tenant.us.qlikcloud.com/api/v1/automl-predictions/{predictionId}/jobs" \
-X POST \
-H "Authorization: Bearer <access_token>"
const https = require('https')
const data = JSON.stringify("")
const options = {
'hostname': 'https://your-tenant.us.qlikcloud.com',
'port': 443,
'path': '/api/v1/automl-predictions/{predictionId}/jobs',
'method': 'POST',
'headers': {
'Authorization': 'Bearer <access_token>'
}
}
const req = https.request(options)
This API is not included yet in qlik-cli
Returns a file containing any rows in a prediction operation where a prediction was unable to be produced.
Facts
Rate limit | Tier 1 (1000 requests per minute) |
Categories | build |
Query Parameters
- refIdstring
Path Parameters
- predictionIdstringRequired
The ID of the prediction configuration object that provides parameters to be applied when the prediction is produced.
Responses
200
text/csv
Stream of not predicted reasons returned successfully.
- text/csvany
400
application/json
Received a bad argument
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
401
application/json
Unauthorized
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
403
application/json
Access forbidden
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
404
application/json
Resource not found.
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
409
application/json
Resource conflict
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
503
application/json
Resource unavailable
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
curl "https://your-tenant.us.qlikcloud.com/api/v1/automl-predictions/{predictionId}/not-predicted-reasons" \
-H "Authorization: Bearer <access_token>"
const https = require('https')
const data = JSON.stringify("")
const options = {
'hostname': 'https://your-tenant.us.qlikcloud.com',
'port': 443,
'path': '/api/v1/automl-predictions/{predictionId}/not-predicted-reasons',
'method': 'GET',
'headers': {
'Authorization': 'Bearer <access_token>'
}
}
const req = https.request(options)
This API is not included yet in qlik-cli
Returns a file containing the predicted values that are associated with a prediction ID.
Facts
Rate limit | Tier 1 (1000 requests per minute) |
Categories | build |
Query Parameters
- refIdstring
Path Parameters
- predictionIdstringRequired
The ID of the prediction configuration object that provides parameters to be applied when the prediction is produced.
Responses
200
Prediction stream returned succesfully.
400
application/json
Received a bad argument
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
401
application/json
Unauthorized
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
403
application/json
Access forbidden
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
404
application/json
Resource not found.
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
409
application/json
Resource conflict
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
503
application/json
Resource unavailable
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
curl "https://your-tenant.us.qlikcloud.com/api/v1/automl-predictions/{predictionId}/predictions" \
-H "Authorization: Bearer <access_token>"
const https = require('https')
const data = JSON.stringify("")
const options = {
'hostname': 'https://your-tenant.us.qlikcloud.com',
'port': 443,
'path': '/api/v1/automl-predictions/{predictionId}/predictions',
'method': 'GET',
'headers': {
'Authorization': 'Bearer <access_token>'
}
}
const req = https.request(options)
This API is not included yet in qlik-cli
Returns a file containing the shapley values that are associated with a prediction ID.
Facts
Rate limit | Tier 1 (1000 requests per minute) |
Categories | build |
Query Parameters
- refIdstring
Path Parameters
- predictionIdstringRequired
The ID of the prediction configuration object that provides parameters to be applied when the prediction is produced.
Responses
200
Stream of shap values returned successfully.
400
application/json
Received a bad argument
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
401
application/json
Unauthorized
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
403
application/json
Access forbidden
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
404
application/json
Resource not found.
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
409
application/json
Resource conflict
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
503
application/json
Resource unavailable
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
curl "https://your-tenant.us.qlikcloud.com/api/v1/automl-predictions/{predictionId}/shap" \
-H "Authorization: Bearer <access_token>"
const https = require('https')
const data = JSON.stringify("")
const options = {
'hostname': 'https://your-tenant.us.qlikcloud.com',
'port': 443,
'path': '/api/v1/automl-predictions/{predictionId}/shap',
'method': 'GET',
'headers': {
'Authorization': 'Bearer <access_token>'
}
}
const req = https.request(options)
This API is not included yet in qlik-cli
Returns a file containing the source values and an index field that are associated with a prediction ID.
Facts
Rate limit | Tier 1 (1000 requests per minute) |
Categories | build |
Query Parameters
- refIdstring
Path Parameters
- predictionIdstringRequired
The ID of the prediction configuration object that provides parameters to be applied when the prediction is produced.
Responses
200
text/csv
Stream of source values and index field returned successfully.
- text/csvany
400
application/json
Received a bad argument
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
401
application/json
Unauthorized
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
403
application/json
Access forbidden
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
404
application/json
Resource not found.
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
409
application/json
Resource conflict
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
503
application/json
Resource unavailable
- application/jsonobject
application/json properties
- errorsarray of objects
errors properties
- codestringRequired
The unique code for the error
- metaobject
meta properties
- detailsstring
Extra details for what may have caused the error
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
- issuestring
The issue code
- titlestring
A summary of what went wrong
- errorIdstring
The unique id of the error instance
- argumentstring
The argument
- resourcestring
The resource type that the error occurred on
- resourceIdstring
The resource id that the error occurred on
-
-
curl "https://your-tenant.us.qlikcloud.com/api/v1/automl-predictions/{predictionId}/source" \
-H "Authorization: Bearer <access_token>"
const https = require('https')
const data = JSON.stringify("")
const options = {
'hostname': 'https://your-tenant.us.qlikcloud.com',
'port': 443,
'path': '/api/v1/automl-predictions/{predictionId}/source',
'method': 'GET',
'headers': {
'Authorization': 'Bearer <access_token>'
}
}
const req = https.request(options)
This API is not included yet in qlik-cli