Accelerate the Value of Data

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
Table 1. Parameters
Parameter Required Description
HeadersAuthorizationYesAccess Token in the format "Bearer <accessToken>". For more information, see topic Authentication API.
Payload YesConfig JSON
Example
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"
                        }
                }
         }
  }