I am trying to make the /ConnectApp api call in Postman to get a connection credential, however I keep getting a 500 error that says I am not logged in despite providing my login credentials in the POST call. Is there another step or something that I am missing?
Link - https://{hostname/primary ip}/API/v1/Json.asmx/ConnectApp
Body:
{
"host": "",
"login": "{username}",
"password": "{password}",
"clientAppName": "Dashboards",
"clientAppVersion": "",
"clientComputerName": ""
}
Response:
<!DOCTYPE html>
<html>
<head>
<title>Sorry, something went wrong...</title>
<style>
body {
background-color: #00517d;
font-family: "Segoe UI Web (West European)", Segoe UI, -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif !important;
color: #ffffff;
text-align: center;
}
.error {
position: absolute;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
width: 100%;
color: #ffffff;
}
.error h1 {
font-size: 40px;
font-weight: 400;
}
.error h2 {
font-size: 20px;
font-weight: 200;
}
.message {
font-size: 16px;
font-weight: 400;
margin-bottom: 25px;
}
.dev-message {
font-size: 12px;
font-weight: 400;
font-style: italic;
margin-top: 50px;
}
.login-message {
font-size: 14px;
font-weight: 400;
font-style: italic;
}
.link-btn {
border: 1px solid rgb(245, 245, 245);
border-radius: 2.4px;
padding-top: 6px;
padding-right: 12px;
padding-bottom: 6px;
padding-left: 12px;
color: #ffffff;
text-decoration: none;
display: inline-block;
}
.link-btn:hover {
background-color: rgb(245, 245, 245);
color: black;
}
.link-btn-container {
margin-bottom: 25px;
}
.logout-btn,
.login-btn {
color: #ffffff;
}
.troubleshoot-btn {
color: #ffffff;
}
.error img {
max-width: 15%;
}
</style>
</head>
<body>
<div class="error">
<img alt="DataMiner Cloud Logo" src="/images/dataminer_cloud_logo.svg">
<h1 class="message">You are not signed in.</h1>
<div class="message login-message">You are not logged in (<a class="login-btn" href="/login">Login</a>)</div>
<div class="link-btn-container">
<a class="link-btn" href="/" onclick="this.href=location.href.split('#')[0]">Reload</a>
<a class="link-btn" href="https://dataminer.services/">Home</a> <a class="link-btn"
href="https://shares.dataminer.services/">Shares</a>
</div>
<div class="link-btn-container">
<a class="link-btn" href="https://community.dataminer.services/questions/" target="_blank">Dojo</a>
<a class="link-btn" href="https://aka.dataminer.services/contacting-tech-support"
target="_blank">Support</a>
</div>
<div class="message dev-message">
<p>(500: An internal server error occurred while executing the request.)</p>
<p>(0HNM19S79D2RU:00000038 | 06/24/2026 19:25:10)</p>
</div>
</div>
</body>
</html>
It looks like you are trying to connect to a DaaS system. This is currently not supported for Web Services.
Yes it is a DaaS system, are there any alternative ways to interact with my system from a third party system like creating jobs and running workflows?