Create a POP

Prev Next
Post
/orchestrator/2.0/pops/{envId}

This is an API call to create a new Policy Orchestration Point (POP).

Notice

Accessing the APIs is through a dedicated domain/URL, according to your PlainID Tenant Location
  • United States (US) - https://API.us1.plainid.io
  • Canada (CA) - https://api.ca1.plainid.io
  • Europe (EU) - https://api.eu1.plainid.io

  • Important 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.


    Security
    HTTP
    Type bearer

    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

    Path parameters
    envId
    stringRequired

    Environment ID. You can find the Environment ID in your Environment Settings.

    Body parameters
    create_example
    {
      "name": "Corporate Data Lake Connection",
      "popId": "extWestus-fin001",
      "orchestrationWorkspaceId": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
      "identityWorkspaceId": "9ca7569f-5635-4cff-a335-74bcb3251ef0",
      "authorizationWorkspaceId": "4988cfea-527e-4183-8f80-608b0540dc14",
      "mode": "LEARN",
      "vendorName": "PowerBI",
      "popConnectionCredentials": {
        "authenticationMethod": "method",
        "credentials": {},
        "discoveryScopeRule": {}
      }
    }
    Expand All
    object

    POP create request V2

    name
    string Required

    POP Name

    popId
    string Required

    POP ID for the POP. Must contain only letters (a-z, A-Z), digits (0-9), hyphens ("-"), underscores ("_"), colons (":"), and periods (".").

    Max length128
    Pattern^[a-zA-Z0-9_:.-]+$
    orchestrationWorkspaceId
    string Required

    The Orchestration Workspace ID is located in the Details Tab in the Orchestration Workspace Settings.

    identityWorkspaceId
    string Required

    The Identity Workspace ID is located in the Details Tab in the Identity Workspace Settings.

    authorizationWorkspaceId
    string Required

    The Authorization Workspace ID is located in the Details Tab in the Authorization Workspace Settings.

    mode
    string Required

    POP Mode

    Valid values[ "LEARN", "MANAGE" ]
    popConnectionCredentials
    object (PopConnectionCredentials) Required

    Refer to the SaaS Management Vendors article for instructions and examples on how to configure your vendor credentials with your Policy Orchestration Points (POP).

    Example{ "authenticationMethod": "method", "credentials": {} }
    authenticationMethod
    string Required
    credentials
    object Required
    discoveryScopeRule
    object

    This parameter is specific to Power BI. See the SaaS Management Vendors article for more information.

    vendorName
    string Required

    Vendor Name

    Valid values[ "PowerBI", "ZScaler", "Snowflake", "Databricks" ]
    description
    string

    POP Description

    Max length200
    settings
    object
    Responses
    201

    Successful response

    create_example
    {
      "data": {
        "id": "POPS269J5C16H8N4",
        "popId": "extWestus-fin001",
        "orchestrationWorkspaceId": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
        "identityWorkspaceId": "9ca7569f-5635-4cff-a335-74bcb3251ef0",
        "authorizationWorkspaceId": "4988cfea-527e-4183-8f80-608b0540dc14",
        "description": "Financial analytics platform integration for transaction monitoring and customer insights.",
        "name": "Corporate Data Lake Connection",
        "mode": "LEARN",
        "state": "DISCOVERY_DONE",
        "vendorName": "PowerBI",
        "popConnectionCredentials": {
          "authenticationMethod": "method",
          "credentials": {},
          "discoveryScopeRule": {}
        }
      }
    }
    Expand All
    object

    Response object

    data
    object (pop)
    id
    string

    Internal PlainID property. Not intended for external use. Use popId as the required identifier for all SaaS Management API operations.

    popId
    string

    POP ID for the POP

    name
    string

    POP Name

    Max length50
    orchestrationWorkspaceId
    string (uuid)

    The Orchestration Workspace ID is located in the Details Tab in the Orchestration Workspace Settings.

    identityWorkspaceId
    string (uuid)

    The Identity Workspace ID is located in the Details Tab in the Identity Workspace Settings.

    authorizationWorkspaceId
    string (uuid)

    The Authorization Workspace ID is located in the Details Tab in the Authorization Workspace Settings.

    description
    string

    POP Description

    Max length200
    vendorName
    string

    Vendor Name

    Valid values[ "PowerBI", "ZScaler", "Snowflake", "Databricks" ]
    popConnectionCredentials
    object (PopConnectionCredentials)

    Refer to the SaaS Management Vendors article for instructions and examples on how to configure your vendor credentials with your Policy Orchestration Points (POP).

    Example{ "authenticationMethod": "method", "credentials": {} }
    authenticationMethod
    string
    credentials
    object
    discoveryScopeRule
    object

    This parameter is specific to Power BI. See the SaaS Management Vendors article for more information.

    mode
    string

    POP Mode.

    Valid values[ "LEARN", "MANAGE" ]
    state
    string
    Valid values[ "DISCOVERY_FAILED", "DISCOVERY_DONE", "DISCOVERY_IN_PROGRESS" ]
    settings
    object
    defaultNewObjectsAccess
    boolean

    Setting for PowerBI to set new tables as public or private.

    401

    Unauthorized

    500

    Internal Server Error