SymetryML Documentation
Encoders

List data sources used to update an encoder

List the names of every data source that has been used to update (via [Update encoder from a data source (async job)](/docs/api-reference/encoders/encoders-encodername-learnds-post)) the given Encoder.

GET
/{user}/encoders/{encodername}/dss

List the names of every data source that has been used to update (via Update encoder from a data source (async job)) the given Encoder.

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

encodername*string

Response Body

application/json

application/json

curl -X GET "https://example.com/c1/encoders/superenc0/dss"
{  "statusCode": 200,  "statusString": "OK",  "values": {    "stringList": {      "values": [        "iris_s3",        "iris_sftp"      ]    }  }}
{  "statusCode": 400,  "statusString": "Customer[c1] does not have Encoder[nosuchenc].",  "values": {}}