Program
Bearer token obtained from POST /{tenantName}/admin/api_clients/{clientName}. Valid for 60 minutes.
Your organization (tenant) name, e.g. acme-health
acme-healthYour environment name: live, sandbox, or a custom name
livetitle,ascList of programs
^[a-z0-9A-Z\-_]+$Bad request — the request could not be understood or was missing required parameters.
Unauthorized — the Bearer token is missing, expired, or invalid.
Forbidden — the API client role does not have permission for this resource. Check the role and security policy in Admin.
Not found — the requested resource does not exist.
Too many requests — rate limit exceeded. Implement exponential backoff.
Internal server error.
GET /{tenantName}/{instanceName}/formations/current/programs HTTP/1.1
Host: api.live.welkincloud.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"name": "text",
"title": "text",
"description": "text",
"phases": [
{
"name": "text",
"title": "text",
"type": "START",
"description": "text",
"autoFinishProgram": true,
"navigateTo": [
{
"name": "text"
}
]
}
],
"nodes": [
{
"ANY_ADDITIONAL_PROPERTY": "anything"
}
]
}
]Bearer token obtained from POST /{tenantName}/admin/api_clients/{clientName}. Valid for 60 minutes.
Your organization (tenant) name, e.g. acme-health
acme-healthYour environment name: live, sandbox, or a custom name
liveMachine-readable program name
Program formation
^[a-z0-9A-Z\-_]+$Bad request — the request could not be understood or was missing required parameters.
Unauthorized — the Bearer token is missing, expired, or invalid.
Forbidden — the API client role does not have permission for this resource. Check the role and security policy in Admin.
Not found — the requested resource does not exist.
Too many requests — rate limit exceeded. Implement exponential backoff.
Internal server error.
GET /{tenantName}/{instanceName}/formations/current/programs/{programName} HTTP/1.1
Host: api.live.welkincloud.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"name": "text",
"title": "text",
"description": "text",
"phases": [
{
"name": "text",
"title": "text",
"type": "START",
"description": "text",
"autoFinishProgram": true,
"navigateTo": [
{
"name": "text"
}
]
}
],
"nodes": [
{
"ANY_ADDITIONAL_PROPERTY": "anything"
}
]
}Last updated
Was this helpful?