SymetryML Documentation
Data sources

List all data sources

List a user's data sources. Each entry is `<dsName>:<dsType>` — the data source name and its type, joined with a colon.

GET
/{user}/dss

List a user's data sources. Each entry is <dsName>:<dsType> — the data source name and its type, joined with a colon.

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/dss"
{  "statusCode": 200,  "statusString": "OK",  "values": {    "stringList": {      "values": [        "ds_s3_iris:s3",        "jdbc_iris:jdbc",        "ds_iris_generate_header:s3"      ]    }  }}
{  "statusCode": 401,  "statusString": "Invalid User",  "values": {}}