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!