An error occurred. If you are unable to continue your work, please contact SailPoint support. Trace ID: 4db196532u7f18b3ab50bc6 Not Found

:bangbang: Please be sure you’ve read the docs and API specs before asking for help. Also, please be sure you’ve searched the forum for your answer before you create a new topic.

I created a workflow to reassign the certification to certifiers manager after duedate is passed, where i’m facing the below error when I’ trying to test it.

An error occurred. If you are unable to continue your work, please contact SailPoint support.

Trace ID: 4db1965318b64ad3ab502fbc6

  • Not Found

Hi @sumav

This sounds tenant specific. Could you provide your workflow JSON with sensitive details redacted?

Hi @sumav ,
As mentioned by @trettkowski please share workflow json also screenshot as well.
Thank you.

Can you share:

  1. Which step in the workflow is failing?

  2. How you’re getting the manager — are you using a Get Identity step first?

  3. The workflow trigger type you’re using?

“HTTP Request 2”: {

                        "actionId": "sp:http",

                        "attributes": {

                            "authenticationType": "OAuth",

                            "jsonRequestBody": {

                                "certificationIds": \[

                                    "{{$.defineVariable.certificationID}}"

                                \],

                                "reason": "reassigned for some reason",

                                "reassignTo": {

                                    "id": "{{$.defineVariable1.managerRefId}}",

                                    "type": "IDENTITY"

                                }

                            },

                            "method": "post",

                            "oAuthClientId": "",

                            "oAuthClientSecret": "",

                            "oAuthCredentialLocation": "oAuthInHeader",

                            "oAuthTokenUrl": "https://tenant.api.identitynow.com/oauth/token",

                            "requestContentType": "json",

                            "requestHeaders": {

                                "Accept": "application/json"

                            },

                            "url": "https://tenant.api.identitynow.com/v2025/campaigns/{{$.defineVariable.campaignId}}/reassign",

                            "urlParams": {

                                "Content-Type": "application/json"

                            }

                        },

                        "displayName": "",

                        "nextStep": "Send Email 2",

                        "type": "action",

                        "versionNumber": 2

                    }

Hi @utkirjonkamiljanov

  1. the workflow isn’t failing, sometimes its throwing the above error when I try to restart. If I remove the reassign step, then the workflow is working fine
    2. yes I’m using get identity to get the manager details
    3. using Scheduled trigger

I only see one thing that looks off in what you provided.

The \ around the [ and ] in your jsonRequestBody → certificationIds section does not need to be there.