SymetryML Documentation
Predictions

Prepare prediction result

Registers a short-lived, one-time-use download key for `dsName` in Redis, scoped to the caller's request signature. Only checks that `dsName` is a **registered** data source name — it does not check that the underlying file/object it points to actually exists or is reachable; that's only discovered when `tmp/dss/file/{key}/{filename}` is subsequently called.

GET
/{user}/tmp/dss/auth/predict-{dsName}

Registers a short-lived, one-time-use download key for dsName in Redis, scoped to the caller's request signature. Only checks that dsName is a registered data source name — it does not check that the underlying file/object it points to actually exists or is reachable; that's only discovered when tmp/dss/file/{key}/{filename} is subsequently called.

Authorization

SymetryMLAuth
AuthorizationBearer <token>

HMAC-SHA256 signature-based authentication: requests are signed with your secret key and sent with the Customer-ID, Sym-date, Authorization, Content-MD5 and sym-version headers. See SymetryML REST API Security for the signature algorithm and a complete example.

In: header

Path Parameters

user*string

User/Customer identifier

dsName*string

Data source name

Response Body

application/json

application/json

curl -X GET "https://example.com/c1/tmp/dss/auth/predict-nbra_ds_sftp_iris"
{  "statusCode": 200,  "statusString": "OK",  "values": {}}
{  "statusCode": 400,  "statusString": "There is no data source with name <unknownDsName>.",  "values": {}}