diff --git a/api/apis.ts b/api/apis.ts
index 9dfd159d6..f4be59ce7 100644
--- a/api/apis.ts
+++ b/api/apis.ts
@@ -112,6 +112,7 @@ export interface Apis {
     iamUsers: IAMUsersApi;
     labels: LabelsApi;
     monthlyTrackedUsers: MonthlyTrackedUsersApi;
+    profilesSync: ProfilesSyncApi;
     selectiveSync: SelectiveSyncApi;
     sources: SourcesApi;
     spaces: SpacesApi;
@@ -147,6 +148,7 @@ export function configureApis(
         iamUsers: new IAMUsersApi(),
         labels: new LabelsApi(),
         monthlyTrackedUsers: new MonthlyTrackedUsersApi(),
+        profilesSync: new ProfilesSyncApi(),
         selectiveSync: new SelectiveSyncApi(),
         sources: new SourcesApi(),
         spaces: new SpacesApi(),
@@ -194,6 +196,7 @@ export function configureEuApis(
         iamUsers: new IAMUsersApi(basePath),
         labels: new LabelsApi(basePath),
         monthlyTrackedUsers: new MonthlyTrackedUsersApi(basePath),
+        profilesSync: new ProfilesSyncApi(basePath),
         selectiveSync: new SelectiveSyncApi(basePath),
         sources: new SourcesApi(basePath),
         spaces: new SpacesApi(basePath),