SymetryML Documentation
Projects

Get project status

Returns a verbose, multi-line debug dump of the project's underlying BET (Base Estimation Task) state as a single string — not a simple enum such as `loaded`/`unloaded`/`frozen`/`processing`. The exact content and format is implementation-defined and may change between versions; treat it as free-form diagnostic text rather than a machine-parseable status code.

GET
/{user}/projects/{project}/status

Returns a verbose, multi-line debug dump of the project's underlying BET (Base Estimation Task) state as a single string — not a simple enum such as loaded/unloaded/frozen/processing. The exact content and format is implementation-defined and may change between versions; treat it as free-form diagnostic text rather than a machine-parseable status code.

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

project*string

Project identifier

Response Body

application/json

application/json

curl -X GET "https://example.com/c1/projects/nbra_prj_iris/status"
{  "statusCode": 200,  "statusString": "OK",  "values": {    "status": "com.rtlm.core.bets.RedisBETV1\nColumns Info:\nBETS Info:\nX1,X2,N:,X:,Y:,X2:,Y2:,X3:,Y3:,XY:,XY2:,\n"  }}
{  "statusCode": 400,  "statusString": "Cannot Find RTLM id[unknownPrj] for Customer id [c1]",  "values": {}}