This API must be used to receive an access token, giving the third-party application temporary access to the Etlworks Integrator's APIs.
To access resources (Flows, Connections, etc.) that exist under the tenant, you must authenticate using an account created under the tenant.
- PATH:
/rest/v1/token-auth/issue
. - EXAMPLE:
https://app.etlworks.com/rest/v1/token-auth/issue
. - METHOD:
POST
. - REQUEST BODY:
{"login":"user","password":"password"}
, whereuser
is the user ID of the Etlworks Integrator's user andpassword
is the password for that same user. - REQUEST CONTENT TYPE:
application/json
. - RESPONSE:
{"token": "access token"}
, whereaccess token
is an actual access token that will be used for all authenticated requests to the API. - RESPONSE CODES: 200 for success, 401 and 403 for not authorized, and 500 for an internal error.
Comments
0 comments
Please sign in to leave a comment.