Configuring Static Partitions
Static partition configuration can be configured using v3 APIs. You can configure static partitions using JSON, and upload it using SailPoint's REST API.
Note
For more information on SailPoint's REST APIs, refer to Best Practices: REST API Authentication and REST API - Update Source (Partial) in the SailPoint Developer Community.
The following example displays two static partitions that are identified by different costCenter values:
[
{
"op": "add",
"path": "/connectorAttributes/partitions",
"value": [
{
"name": "Partition 1",
"size": 0,
"attributes": {
"costCenter": "CC-AD"
}
},
{
"name": "Partition 2",
"size": 0,
"attributes": {
"costCenter": "CC-AE"
}
}
]
}
]