SP-Config import issue

Hello,

I was able to successfully export a Form using SP-Config with Postman. However, I haven’t been able to import a Form from a JSON file using any of the available API versions (beta, v2024, or v2025).

Is it possible that the API call for importing the "FORM_DEFINITION" type is not functioning correctly, or could there be something missing in my configuration?

Below is an example of the JSON file I’m using for the import (sensitive information such as IDs, tenant and names has been replaced):

{
    "version": 1,
    "timestamp": "2025-05-13T15:41:28.722645Z",
    "tenant": "sampleTenant",
    "description": "Export Forms",
    "options": {
        "excludeTypes": [],
        "includeTypes": [
            "FORM_DEFINITION"
        ],
        "objectOptions": {}
    },
    "objects": [
        {
            "version": 1,
            "self": {
                "id": "e3c1f3aa-4f9c-472d-b2a7-2c6cf93bfb76",
                "type": "FORM_DEFINITION",
                "name": "Form test"
            },
            "object": {
                "id": "e3c1f3aa-4f9c-472d-b2a7-2c6cf93bfb76",
                "name": "Form test",
                "description": "",
                "owner": {
                    "type": "IDENTITY",
                    "id": "a7d39f0c5gk83yv2r19u04e6d1bc228a",
                    "name": "mike"
                },
                "usedBy": [],
                "formInput": [],
                "formElements": [
                    {
                        "id": "383073719216",
                        "elementType": "SECTION",
                        "config": {
                            "alignment": "LEFT",
                            "description": "Un formulaire pour créer de nouvelles identités",
                            "formElements": [
                                {
                                    "config": {
                                        "default": "",
                                        "description": "",
                                        "helpText": "ex : Jhon",
                                        "label": "Prénom",
                                        "placeholder": "Jhon",
                                        "required": true
                                    },
                                    "elementType": "TEXT",
                                    "id": "372043302077",
                                    "key": "prenom",
                                    "validations": [
                                        {
                                            "validationType": "REQUIRED"
                                        }
                                    ]
                                },
                                {
                                    "config": {
                                        "default": "",
                                        "description": "",
                                        "helpText": "ex : DOE",
                                        "label": "Nom",
                                        "placeholder": "DOE",
                                        "required": true
                                    },
                                    "elementType": "TEXT",
                                    "id": "495097735343",
                                    "key": "nom",
                                    "validations": [
                                        {
                                            "validationType": "REQUIRED"
                                        }
                                    ]
                                }
                            ],
                            "label": "Nouvel Arrivant",
                            "labelStyle": "h1",
                            "showLabel": true
                        },
                        "validations": []
                    }
                ],
                "formConditions": [],
                "created": "2025-05-13T10:05:04.524419679Z",
                "modified": "2025-05-13T12:29:09.430200678Z"
            }
        }
    ]
}

The message says No objects found to import when checking the job status.

Has anyone faced this issue before, please?

Hi @MohammedSAHRAOUI,

As per the documentation, import is not supported for FORM DEFINITIONS.

Link - SaaS Configuration | SailPoint Developer Community

2 Likes