Talend Management Console
Last updated: 9/10/2026Upcoming changes for UI
In future releases, Talend Management Console will mask the webhook URL for a task or plan trigger, displaying it as *******, for users who do not have Operator (Execute) permission on the space. Users with this permission will continue to see the full webhook URL.
For more information, see Webhooks in Talend Management Console and Generating a webhook URL.
Upcoming changes for API
The run-config response returned for task and plan executables will mask the webhook trigger url as ******* for callers who do not have Operator (Execute) permission on the space. Callers with this permission will continue to receive the full URL.
Before:
{
"trigger": {
"webhook": {
"name": "wh",
"triggerCalls": 10,
"triggerTimeout": 30000,
"runAsUser": "myuser",
"runAsUserType": "HUMAN",
"url": "https://webhooks.eu.cloud.talend.com/mywebhook/<webhook-id>"
}
}
}After, for callers without Operator (Execute) permission on the space:
{
"trigger": {
"webhook": {
"name": "wh",
"triggerCalls": 10,
"triggerTimeout": 30000,
"runAsUser": "myuser",
"runAsUserType": "HUMAN",
"url": "*******"
}
}
}What you should do
If you have automation, integrations, or service accounts that read the webhook URL through the API, grant them Operator (Execute) permission on the relevant space before this change takes effect. Otherwise, they will receive the masked value instead of the webhook URL.
New features
| Feature | Description |
|---|---|
| Improvements for paused tasks in plans |
When you pause a task that is used in one or more plans, the pause dialog now lists the affected plans and lets you filter them by name and space. The plan details page also shows a warning when a plan contains paused tasks. |
| SSO configuration access with the SSO - Manage permission |
Users with the SSO - Manage permission (ID: TMC_SSO_MANAGEMENT) can now access and configure SSO settings in without requiring the full Security Administrator role. To grant SSO configuration access to specific users, add the SSO - Manage permission to any custom role. The Security Administrator predefined role still includes this permission. For more information, see SSO configuration. |