Updates the workflow configuration
Learn how to update the workflow configuration for a tenant with the workflow URL.
Request
Operation Endpoint:
PUT {inbox_url}/services/config/{tenantId}/workflow
Parameter | Required | Description | |
---|---|---|---|
Headers | Authorization | Yes | Access Token in the format "Bearer
<accessToken> ". For more information, see topic Authentication API. |
Payload | Yes | Config JSON |
PUT https://dev-workflowui.reltio.com/services/config/rmtenant/workflow
Request body
Sample Request JSON:
{{
"services": {
"workflowService": {
"path": "https://tst2-workflow.reltio.com/workflow-adapter/workflow"
}
}
}
]}
Response
Sample Response JSON:
{
"createdAt": 1662535340447,
"createdBy": "test-user",
"data": {
"services": {
"workflowService": {
"path": "https://tst2-workflow.reltio.com/workflow-adapter/workflow"
}
}
}
}