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 Function

IntegrationCentricProfile.list()

Return Object

ListIterator<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 com.files.ListIterator;
import com.files.exceptions.*;
import com.files.exceptions.ApiErrorException.*;
import com.files.models.IntegrationCentricProfile;

try {
  HashMap<String, Object> parameters = new HashMap<>();
  ListIterator<IntegrationCentricProfile> integrationCentricProfiles = IntegrationCentricProfile.list(parameters);
  for (IntegrationCentricProfile integrationCentricProfile : integrationCentricProfiles.listAutoPaging()) {
    // Operate on integrationCentricProfile
  }
} catch (NotAuthenticatedException e) {
  System.out.println("Authentication Error Occurred (" + e.getClass().getName() + "): " + e.getMessage());
} catch (SdkException e) {
  System.out.println("Unknown Error Occurred (" + e.getClass().getName() + "): " + e.getMessage());
}

Show Integration Centric Profile

SDK Function

IntegrationCentricProfile.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.

Function Arguments

ArgumentDescription
id
int64
Required
Integration Centric Profile ID.

Example Request

import com.files.exceptions.*;
import com.files.exceptions.ApiErrorException.*;
import com.files.models.IntegrationCentricProfile;

try {
  HashMap<String, Object> parameters = new HashMap<>();
  IntegrationCentricProfile integrationCentricProfile = IntegrationCentricProfile.find(id, parameters);
  // Operate on integrationCentricProfile
} catch (NotAuthenticatedException e) {
  System.out.println("Authentication Error Occurred (" + e.getClass().getName() + "): " + e.getMessage());
} catch (SdkException e) {
  System.out.println("Unknown Error Occurred (" + e.getClass().getName() + "): " + e.getMessage());
}

Create Integration Centric Profile

SDK Function

IntegrationCentricProfile.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.

Function 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 com.files.exceptions.*;
import com.files.exceptions.ApiErrorException.*;
import com.files.models.IntegrationCentricProfile;

try {
  HashMap<String, Object> parameters = new HashMap<>();
  parameters.put("name", "Business Systems Onboarding");
  parameters.put("expected_remote_servers", ["example"]);
  
  IntegrationCentricProfile integrationCentricProfile = IntegrationCentricProfile.create(parameters);
  // Operate on integrationCentricProfile
} catch (NotAuthenticatedException e) {
  System.out.println("Authentication Error Occurred (" + e.getClass().getName() + "): " + e.getMessage());
} catch (SdkException e) {
  System.out.println("Unknown Error Occurred (" + e.getClass().getName() + "): " + e.getMessage());
}

Update Integration Centric Profile

SDK Function

integrationCentricProfile.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.

Attribute Setters

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

Example Request

import com.files.exceptions.*;
import com.files.exceptions.ApiErrorException.*;
import com.files.models.IntegrationCentricProfile;

try {
  // Find the integrationCentricProfile object by its id.
  IntegrationCentricProfile integrationCentricProfile = IntegrationCentricProfile.find(id, null);
  HashMap<String, Object> parameters = new HashMap<>();
  parameters.put("name", "Business Systems Onboarding");
  integrationCentricProfile.update(parameters);
} catch (NotAuthenticatedException e) {
  System.out.println("Authentication Error Occurred (" + e.getClass().getName() + "): " + e.getMessage());
} catch (SdkException e) {
  System.out.println("Unknown Error Occurred (" + e.getClass().getName() + "): " + e.getMessage());
}

Delete Integration Centric Profile

SDK Function

integrationCentricProfile.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 com.files.exceptions.*;
import com.files.exceptions.ApiErrorException.*;
import com.files.models.IntegrationCentricProfile;

try {
  // Find the integrationCentricProfile object by its id.
  IntegrationCentricProfile integrationCentricProfile = IntegrationCentricProfile.find(id, null);
  integrationCentricProfile.delete(null);
} catch (NotAuthenticatedException e) {
  System.out.println("Authentication Error Occurred (" + e.getClass().getName() + "): " + e.getMessage());
} catch (SdkException e) {
  System.out.println("Unknown Error Occurred (" + e.getClass().getName() + "): " + e.getMessage());
}

The IntegrationCentricProfile Object

Some of the functions 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.