Auth Credentials

GEThttps://api.laminar.run/workspaces/{workspaceId}/auth-credentials
Path parameters
workspaceId*integer (int64)
Response

OK

Body
idinteger (int64)
namestring
authTypestring
Request
const response = await fetch('https://api.laminar.run/workspaces/{workspaceId}/auth-credentials', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "name": "text",
    "authType": "text"
  }
]