Integration Centric Profiles

An Integration Centric Profile defines the Remote Server integrations a user is expected to add and connect during integration-centric onboarding.

Use this to automate setup guidance for users who need access to multiple business systems without sending long manual instructions. Common scenarios include ongoing access to systems such as SharePoint, bridging Google, Microsoft, and Box environments after M&A activity, and migrations where users connect legacy EFSS accounts during transition work.

List Integration Centric Profiles

SDK Method

files_sdk.integration_centric_profile.list()

Return Object

ListObj[IntegrationCentricProfile]

Authorization Requirement

Requires either a Site-Wide API key or User API key or session from a User with Site Admin permissions.

Additional Arguments

Example Request

import files_sdk

try:
  integration_centric_profiles = files_sdk.integration_centric_profile.list()
  for integration_centric_profile in integration_centric_profiles.auto_paging_iter():
    # Operate on integration_centric_profile
except files_sdk.error.NotAuthenticatedError as err:
  print(f"Authentication Error Occurred ({type(err).__name__}):", err)
except files_sdk.error.Error as err:
  print(f"Unknown Error Occurred ({type(err).__name__}):", err)

Show Integration Centric Profile

SDK Method

files_sdk.integration_centric_profile.find()

Return Object

IntegrationCentricProfile

Authorization Requirement

Requires either a Site-Wide API key or User API key or session from a User with Site Admin permissions.

Method Arguments

ArgumentDescription
id
int64
Required
Integration Centric Profile ID.

Example Request

import files_sdk

try:
  integration_centric_profile = files_sdk.integration_centric_profile.find(id)
  # Operate on integration_centric_profile
except files_sdk.error.NotAuthenticatedError as err:
  print(f"Authentication Error Occurred ({type(err).__name__}):", err)
except files_sdk.error.Error as err:
  print(f"Unknown Error Occurred ({type(err).__name__}):", err)

Create Integration Centric Profile

SDK Method

files_sdk.integration_centric_profile.create()

Return Object

IntegrationCentricProfile

Authorization Requirement

Requires either a Site-Wide API key or User API key or session from a User with Site Admin permissions.

Method Arguments

ArgumentDefaultDescription
name
string
Required
Profile name
expected_remote_servers
array(object)
Required
Remote Server integrations the user is expected to add and connect. Each entry requires server_type and may include a display name.
workspace_id
int64
0Workspace ID
use_for_all_users
boolean
falseWhether this profile applies to all users in the Workspace by default

Example Request

import files_sdk

try:
  integration_centric_profile = files_sdk.integration_centric_profile.create({
    "name": "Business Systems Onboarding",
    "expected_remote_servers": ["example"]
  })
  # Operate on integration_centric_profile
except files_sdk.error.NotAuthenticatedError as err:
  print(f"Authentication Error Occurred ({type(err).__name__}):", err)
except files_sdk.error.Error as err:
  print(f"Unknown Error Occurred ({type(err).__name__}):", err)

Update Integration Centric Profile

SDK Method

integration_centric_profile.update()

Return Object

IntegrationCentricProfile

Authorization Requirement

Requires either a Site-Wide API key or User API key or session from a User with Site Admin permissions.

Method Arguments

ArgumentDescription
name
string
Profile name
workspace_id
int64
Workspace ID
expected_remote_servers
array(object)
Remote Server integrations the user is expected to add and connect. Each entry requires server_type and may include a display name.
use_for_all_users
boolean
Whether this profile applies to all users in the Workspace by default

Example Request

import files_sdk

try:
  # Find the integration_centric_profile object by its id.
  integration_centric_profile = files_sdk.integration_centric_profile.find(id)
  integration_centric_profile.update({
    "name": "Business Systems Onboarding"
  })
except files_sdk.error.NotAuthenticatedError as err:
  print(f"Authentication Error Occurred ({type(err).__name__}):", err)
except files_sdk.error.Error as err:
  print(f"Unknown Error Occurred ({type(err).__name__}):", err)

Delete Integration Centric Profile

SDK Method

integration_centric_profile.delete()

Return Object

No return value.

Authorization Requirement

Requires either a Site-Wide API key or User API key or session from a User with Site Admin permissions.

Example Request

import files_sdk

try:
  # Find the integration_centric_profile object by its id.
  integration_centric_profile = files_sdk.integration_centric_profile.find(id)
  integration_centric_profile.delete()
except files_sdk.error.NotAuthenticatedError as err:
  print(f"Authentication Error Occurred ({type(err).__name__}):", err)
except files_sdk.error.Error as err:
  print(f"Unknown Error Occurred ({type(err).__name__}):", err)

The IntegrationCentricProfile Object

Some of the methods above return a IntegrationCentricProfile object. The attributes of this object are listed below.

AttributeDescription
id
int64
Integration Centric Profile ID
name
string
Profile name
workspace_id
int64
Workspace ID
use_for_all_users
boolean
Whether this profile applies to all users in the Workspace by default
expected_remote_servers
array(object)
Remote Server integrations the user is expected to add and connect. Each entry requires server_type and may include a display name.