SymetryML Documentation
Projects

List all projects

Returns the names of all projects currently known for this customer. Unlike `GET /{user}/projects/info`, this call is always synchronous — it never returns a job to poll.

GET
/{user}/projects/list

Returns the names of all projects currently known for this customer. Unlike GET /{user}/projects/info, this call is always synchronous — it never returns a job to poll.

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

Response Body

application/json

application/json

curl -X GET "https://example.com/c1/projects/list"
{  "statusCode": 200,  "statusString": "OK",  "values": {    "stringList": {      "values": [        "nbra_prj_gpu",        "jdbc_ds_prj",        "prj_localfile"      ]    }  }}
{  "statusCode": 401,  "statusString": "Invalid User",  "values": {}}