Hi @veroniqueb, I assume you are trying to reference the transform script with the name “Change Start Date Format”, but from what I see in your provisioning policy, you are using type: dateFormat instead and not type: reference.
You can try this:
{
"name": "StartDate",
"transform": {
"type": "reference",
"attributes": {
"id": "Change Start Date Format",
"input": {
"type": "identityAttribute",
"attributes": {
"name": "startDate"
}
}
}
},
"attributes": {},
"isRequired": false,
"type": "string",
"isMultiValued": false
}
Reference | SailPoint Developer Community
Hope this helps.