WebService Connector - CREATE_ACCOUNT - Provision Plan not passing all attributes

Hi all,

I’m working a new API integration, and now I’m stucked on CREATE_OPERATION, because mine API expects CPF attribute, the following block code is how mine operation BODY is configurated

{
  "cpf": "$plan.cpf$",
  "login": "$plan.login$",
  "nomeUsuario": "$plan.nomeUsuario$",
  "status": "A"
}

In this operation I also have an Provisioning Police

[
    {
        "name": "Account",
        "description": null,
        "usageType": "CREATE",
        "fields": [
            {
                "name": "cpf",
                "transform": {
                    "type": "identityAttribute",
                    "attributes": {
                        "name": "cpf"
                    }
                },
                "attributes": {},
                "isRequired": false,
                "type": "string",
                "isMultiValued": false
            },
            {
                "name": "login",
                "transform": {
                    "type": "identityAttribute",
                    "attributes": {
                        "name": "uid"
                    }
                },
                "attributes": {},
                "isRequired": false,
                "type": "string",
                "isMultiValued": false
            },
            {
                "name": "nomeUsuario",
                "transform": {
                    "type": "identityAttribute",
                    "attributes": {
                        "name": "displayName"
                    }
                },
                "attributes": {},
                "isRequired": false,
                "type": "string",
                "isMultiValued": false
            }
        ]
    }
]

And mine Identity have this attribute filled

But when I get jsonBody into a Before Create Operation Rule… this body don’t have the item “cpf” where I can missed item?

Thanks again!

Is cpf set as Accound ID in the Account Schema? In that case you need to refer to it as $plan.nativeIdentity$

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