I want to use Dynamic Partitioning in Sailpoint Web Service Connector. There is no endopoint that would return possible partitions but I want to create them in after operation rule based on some attribute value:
Get Partitions operation response is:
{
"MESSAGE": "Success",
"STATUS": true,
"RESULT": [
{
"COMPANY": "ACME",
"CO": "ACMELAND",
"ACME_DEPARTMENTS": "3"
}
]
}
Now based on value in ACME_DEPARTMENTS attribute I prepare list of partitions:
{
"departments": [
"1",
"2",
"3"
]
}
How should I configure operations that this list is recognized as partitions to be created? Should I return it as “data” map in the after provisioning rule, add it to requestEndPoint/responseObject? I tried these things but didn’t succeed. How do I do it exactly?
@kskendelis @Paul_Meyer, I see that you discussed it in another topic: https://developer.sailpoint.com/discuss/t/webservices-parent-child-request/12935, maybe one of you could help me with that?