"Resource Workflow null not found / Status 404" when sending LaunchedWorkflows request through API

Hello all,

I got the message “Resource Workflow null not found / Status 404 Not Found” when sending LaunchedWorkflows request through API

Here is the body of my request :
{
“schemas”: [
“urn:ietf:params:scim:schemas:sailpoint:1.0:LaunchedWorkflow”,
“urn:ietf:params:scim:schemas:sailpoint:1.0:TaskResult”
],
“workflowName”: “WF_C_XXX_GRP”,
“input”: [
{
“key”: “transient”,
“value”: “true”,
“type”: “application/xml”
},
{
“key”: “trace”,
“value”: “true”,
“type”: “application/xml”
},

{
“key”: “myapplication”,
“value”: “toto”,
“type”: “application/xml”
}
]
}

Also, here is the body of the response :
{
“schemas”: [
“urn:ietf:params:scim:api:messages:2.0:Error”
],
“detail”: “Resource Workflow null not found.”,
“status”: “404”
}

Has anyone faced the same issue ?

Thanks for your help !

Hi @amirabo

It looks like there is an issue with the request body. Try using the following format -

{
     "schemas": [
     "urn:ietf:params:scim:schemas:sailpoint:1.0:LaunchedWorkflow",
     "urn:ietf:params:scim:schemas:sailpoint:1.0:TaskResult"
     ],
     "urn:ietf:params:scim:schemas:sailpoint:1.0:LaunchedWorkflow": {
           "workflowName": "<WorkflowName",
           "input": [ "<Input Values>"
           ]
     }
}

Hello James,

Thanks ! It worked :wink:

2 Likes

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.