Encountering error while launching workflow via SCIM

Hi,
I am trying to use the /LaunchedWorkflows POST SCIM api to launch a test workflow. IIQ version is 8.1p3.
The input body is the below one:

{
"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": "Test Deletion Workflow",
"input": [
{
"key": "identityName",
"value": "James Smith"
}
]
}
}

Am receiving a 500 error “Unable to get property value using getter class:sailpoint.service.scim.VersionGetter”

I am able to launch the same workflow through REST API though.

Please advise.

1 Like

Found the issue. Looks like we cannot launch a ‘transient’ workflow through SCIM API. When i set the transient variable to ‘false’, the workflow got launched as expected.

I believe i need to submit a support ticket?

2 Likes