Accelerate the Value of Data

Creates the workflow configuration

Learn how to create the workflow configuration for a tenant with the workflow URL.

Request

Operation Endpoint:

POST {inbox_url}/services/config/{tenantId}/workflow
Table 1. Parameters
Parameter Required Description
HeadersAuthorizationYes Access Token in the format "Bearer <accessToken>". For more information, see topic Authentication API.
Response NANA
200 : Configuration created successfully
400 : Configuration already exists
401 : Unauthorized access
PayloadConfig JSON

Example

POST https://dev-workflowui.reltio.com/services/config/rmtenant/workflow

Request body

{
    "services": {
        "workflowService": {
             "path": "https://tst1-workflow.reltio.com/workflow-adapter/workflow"
          }
     }
}

Response

{
    "createdAt": 1662535955693,
    "data": {
                 "services": {
                      "workflowService": {
                             "path": "https://tst-workflow.reltio.com/workflow-adapter/workflow"
                     }
              }
       }
}