This is an API call to update a Policy Orchestration Point (POP).
Notice
Accessing the APIs is through a dedicated domain/URL, according to your PlainID Tenant LocationImportant note about headers
Refer to the headers below to modify your cURL sample. Check if the following headers are in the sample, if not, ensure you add it to your cURL sample before pasting into your API tool.Headers
*Required| Header | Value | cURL Line |
|---|---|---|
| Accept | `application/json` | `-H"Accept: application/json"` |
| Content Type | `application/json` | `-H"Content-Type: application/json"` |
cURL Sample Guidelines
In order for the relevant parameters to appear in the cURL sample, you can input the values in the interactive API console on the right in the Try It or Code Sample tabs. You can then copy the cURL sample from the Code Sample tab in the correct format.
Using HTML Encoded Special Characters
Use HTML encoded patterns when working with values that contain special characters like spaces, dashes, etc. Refer to this HTML URL Encoding Reference for a full list.
For more details about Administration API Authentication, check out the Authentication APIs documentation
Provide your bearer token in the Authorization header when making requests to protected resources.
Example: Authorization: Bearer 123
Environment ID. You can find the Environment ID in your Environment Settings.
POP ID. You can find the POP ID using the GET List of POPs API or through the UI under your POP settings.
{
"orchestrationWorkspaceId": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"identityWorkspaceId": "9ca7569f-5635-4cff-a335-74bcb3251ef0",
"authorizationWorkspaceId": "4988cfea-527e-4183-8f80-608b0540dc14",
"description": "Aggregates customer account and transaction data for trend analysis and risk profiling.",
"mode": "LEARN",
"name": "Retail Banking Data Hub",
"popId": "retail-banking-pop",
"vendorName": "PowerBI",
"popConnectionCredentials": {
"authenticationMethod": "method",
"credentials": {}
}
}{
"orchestrationWorkspaceId": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"identityWorkspaceId": "9ca7569f-5635-4cff-a335-74bcb3251ef0",
"authorizationWorkspaceId": "4988cfea-527e-4183-8f80-608b0540dc14",
"description": "Provides access control and permission orchestration for risk scoring systems.",
"mode": "MANAGE",
"name": "Credit Risk Control Center",
"popId": "creditRisk",
"vendorName": "PowerBI",
"popConnectionCredentials": {
"authenticationMethod": "method",
"credentials": {}
},
"settings": {
"defaultNewObjectsAccess": true
}
}POP update request V2
POP Name
POP ID for the POP. Must contain only letters (a-z, A-Z), digits (0-9), hyphens ("-"), underscores ("_"), colons (":"), and periods (".").
The Orchestration Workspace ID is located in the Details Tab in the Orchestration Workspace Settings.
The Identity Workspace ID is located in the Details Tab in the Identity Workspace Settings.
The Authorization Workspace ID is located in the Details Tab in the Authorization Workspace Settings.
POP Description
POP Mode
Refer to the SaaS Management Vendors article for instructions and examples on how to configure your vendor credentials with your Policy Orchestration Points (POP).
This parameter is specific to Power BI. See the SaaS Management Vendors article for more information.
Vendor Name
Success
{
"data": {
"id": "POPS269J5C16H8N4",
"popId": "retail-banking-pop",
"orchestrationWorkspaceId": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"identityWorkspaceId": "9ca7569f-5635-4cff-a335-74bcb3251ef0",
"authorizationWorkspaceId": "4988cfea-527e-4183-8f80-608b0540dc14",
"description": "Aggregates customer account and transaction data for trend analysis and risk profiling.",
"name": "Retail Banking Data Hub",
"mode": "LEARN",
"state": "DISCOVERY_DONE",
"vendorName": "PowerBI",
"popConnectionCredentials": {
"authenticationMethod": "method",
"credentials": {}
}
}
}{
"data": {
"id": "POPS269J5C16H8N4",
"popId": "creditRisk",
"orchestrationWorkspaceId": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"identityWorkspaceId": "9ca7569f-5635-4cff-a335-74bcb3251ef0",
"authorizationWorkspaceId": "4988cfea-527e-4183-8f80-608b0540dc14",
"description": "Provides access control and permission orchestration for risk scoring systems.",
"name": "Credit Risk Control Center",
"mode": "MANAGE",
"state": "DISCOVERY_DONE",
"vendorName": "PowerBI",
"popConnectionCredentials": {
"authenticationMethod": "method",
"credentials": {}
},
"settings": {
"defaultNewObjectsAccess": true
}
}
}Response object
Internal PlainID property. Not intended for external use. Use popId as the required identifier for all SaaS Management API operations.
POP ID for the POP
POP Name
The Orchestration Workspace ID is located in the Details Tab in the Orchestration Workspace Settings.
The Identity Workspace ID is located in the Details Tab in the Identity Workspace Settings.
The Authorization Workspace ID is located in the Details Tab in the Authorization Workspace Settings.
POP Description
Vendor Name
Refer to the SaaS Management Vendors article for instructions and examples on how to configure your vendor credentials with your Policy Orchestration Points (POP).
This parameter is specific to Power BI. See the SaaS Management Vendors article for more information.
POP Mode.
Setting for PowerBI to set new tables as public or private.
Unauthorized
Not Found
Internal Server Error