
Security News
MCP Steering Committee Launches Official MCP Registry in Preview
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
@corellium/client-api
Advanced tools
CorelliumClient - JavaScript client for @corellium/client-api REST API to manage your virtual devices. This SDK is automatically generated by the OpenAPI Generator project:
To publish the library as a npm, please follow the procedure in "Publishing npm packages".
Then install it via:
npm install @corellium/client-api --save
Finally, you need to build the module:
npm run build
To use the library locally without publishing to a remote npm registry, first install the dependencies by changing into the directory containing package.json
(and this README). Let's call this JAVASCRIPT_CLIENT_DIR
. Then run:
npm install
Next, link it globally in npm with the following, also from JAVASCRIPT_CLIENT_DIR
:
npm link
To use the link you just defined in your project, switch to the directory you want to use your @corellium/client-api from, and run:
npm link /path/to/<JAVASCRIPT_CLIENT_DIR>
Finally, you need to build the module:
npm run build
If the library is hosted at a git repository, e.g.https://github.com/GIT_USER_ID/GIT_REPO_ID then install it via:
npm install GIT_USER_ID/GIT_REPO_ID --save
The library also works in the browser environment via npm and browserify. After following
the above steps with Node.js and installing browserify with npm install -g browserify
,
perform the following (assuming main.js is your entry file):
browserify main.js > bundle.js
Then include bundle.js in the HTML pages.
Using Webpack you may encounter the following error: "Module not found: Error: Cannot resolve module", most certainly you should disable AMD loader. Add/merge the following section to your webpack config:
module: {
rules: [
{
parser: {
amd: false
}
}
]
}
Please follow the installation instruction and execute the following JS code:
var CorelliumClient = require('@corellium/client-api');
var defaultClient = CorelliumClient.ApiClient.instance;
// Configure Bearer (ApiToken or JWT) access token for authorization: BearerAuth
var BearerAuth = defaultClient.authentications['BearerAuth'];
BearerAuth.accessToken = "YOUR ACCESS TOKEN"
var api = new CorelliumClient.CorelliumApi()
var instanceId = "instanceId_example"; // {String} ID of instance
var createAssessmentDto = new CorelliumClient.CreateAssessmentDto(); // {CreateAssessmentDto} Create a new assessment
api.createAssessment(instanceId, createAssessmentDto).then(function(data) {
console.log('API called successfully. Returned data: ' + data);
}, function(error) {
console.error(error);
});
All URIs are relative to https://app.corellium.com/api
Class | Method | HTTP request | Description |
---|---|---|---|
CorelliumClient.CorelliumApi | createAssessment | POST /v1/services/matrix/{instanceId}/assessments | Create assessment |
CorelliumClient.CorelliumApi | deleteAssessment | DELETE /v1/services/matrix/{instanceId}/assessments/{assessmentId} | Delete assessment |
CorelliumClient.CorelliumApi | downloadReport | GET /v1/services/matrix/{instanceId}/assessments/{assessmentId}/download | Download report |
CorelliumClient.CorelliumApi | getAssessmentById | GET /v1/services/matrix/{instanceId}/assessments/{assessmentId} | Get assessment by ID |
CorelliumClient.CorelliumApi | getAssessmentsByInstanceId | GET /v1/services/matrix/{instanceId}/instances/{instanceId}/assessments | Get assessments by instanceId |
CorelliumClient.CorelliumApi | runTests | POST /v1/services/matrix/{instanceId}/assessments/{assessmentId}/test | Update assessment state and execute MATRIX tests |
CorelliumClient.CorelliumApi | startMonitoring | POST /v1/services/matrix/{instanceId}/assessments/{assessmentId}/start | Update assessment state and begin device monitoring |
CorelliumClient.CorelliumApi | stopMonitoring | POST /v1/services/matrix/{instanceId}/assessments/{assessmentId}/stop | Update assessment state and stop device monitoring |
CorelliumClient.CorelliumApi | v1AcceptSharedSnapshot | POST /v1/snapshots/accept | Accept a snapshot shared with you |
CorelliumClient.CorelliumApi | v1ActivityExport | POST /v1/activity/export | Start activity export |
CorelliumClient.CorelliumApi | v1ActivityList | GET /v1/activity | Get resource activities |
CorelliumClient.CorelliumApi | v1AddProjectKey | POST /v1/projects/{projectId}/keys | Add Project Authorized Key |
CorelliumClient.CorelliumApi | v1AddTeamRoleToProject | PUT /v1/roles/projects/{projectId}/teams/{teamId}/roles/{roleId} | Add team role to project |
CorelliumClient.CorelliumApi | v1AddUserRoleToProject | PUT /v1/roles/projects/{projectId}/users/{userId}/roles/{roleId} | Add user role to project |
CorelliumClient.CorelliumApi | v1AddUserToTeam | PUT /v1/teams/{teamId}/users/{userId} | Add user to team |
CorelliumClient.CorelliumApi | v1AgentAppReady | GET /v1/instances/{instanceId}/agent/v1/app/ready | Check if App subsystem is ready |
CorelliumClient.CorelliumApi | v1AgentDeleteFile | DELETE /v1/instances/{instanceId}/agent/v1/file/device/{filePath} | Delete a File on VM |
CorelliumClient.CorelliumApi | v1AgentGetFile | GET /v1/instances/{instanceId}/agent/v1/file/device/{filePath} | Download a File from VM |
CorelliumClient.CorelliumApi | v1AgentGetTempFilename | POST /v1/instances/{instanceId}/agent/v1/file/temp | Get the path for a new temp file |
CorelliumClient.CorelliumApi | v1AgentInstallApp | POST /v1/instances/{instanceId}/agent/v1/app/install | Install App at path |
CorelliumClient.CorelliumApi | v1AgentInstallProfile | POST /v1/instances/{instanceId}/agent/v1/profile/install | Install a Profile to VM |
CorelliumClient.CorelliumApi | v1AgentKillApp | POST /v1/instances/{instanceId}/agent/v1/app/apps/{bundleId}/kill | Kill an App |
CorelliumClient.CorelliumApi | v1AgentListAppIcons | GET /v1/instances/{instanceId}/agent/v1/app/icons | List App Icons |
CorelliumClient.CorelliumApi | v1AgentListApps | GET /v1/instances/{instanceId}/agent/v1/app/apps | List Apps |
CorelliumClient.CorelliumApi | v1AgentListAppsStatus | GET /v1/instances/{instanceId}/agent/v1/app/apps/update | List Apps Status |
CorelliumClient.CorelliumApi | v1AgentListProfiles | GET /v1/instances/{instanceId}/agent/v1/profile/profiles | List Profiles |
CorelliumClient.CorelliumApi | v1AgentRunApp | POST /v1/instances/{instanceId}/agent/v1/app/apps/{bundleId}/run | Run an App |
CorelliumClient.CorelliumApi | v1AgentSetFileAttributes | PATCH /v1/instances/{instanceId}/agent/v1/file/device/{filePath} | Change Attrs of a File on VM |
CorelliumClient.CorelliumApi | v1AgentSystemGetAdbAuth | GET /v1/instances/{instanceId}/agent/v1/system/adbauth | Get ADB Auth Setting (AOSP only) |
CorelliumClient.CorelliumApi | v1AgentSystemGetNetwork | GET /v1/instances/{instanceId}/agent/v1/system/network | Get IP of eth0 (AOSP only) |
CorelliumClient.CorelliumApi | v1AgentSystemGetProp | POST /v1/instances/{instanceId}/agent/v1/system/getprop | Get System Property (AOSP only) |
CorelliumClient.CorelliumApi | v1AgentSystemInstallOpenGApps | POST /v1/instances/{instanceId}/agent/v1/system/install-opengapps | Install OpenGApps (AOSP only) |
CorelliumClient.CorelliumApi | v1AgentSystemLock | POST /v1/instances/{instanceId}/agent/v1/system/lock | Lock Device (iOS Only) |
CorelliumClient.CorelliumApi | v1AgentSystemSetAdbAuth | PUT /v1/instances/{instanceId}/agent/v1/system/adbauth | Set ADB Auth Setting (AOSP only) |
CorelliumClient.CorelliumApi | v1AgentSystemSetHostname | POST /v1/instances/{instanceId}/agent/v1/system/setHostname | Set Hostname of instance |
CorelliumClient.CorelliumApi | v1AgentSystemShutdown | POST /v1/instances/{instanceId}/agent/v1/system/shutdown | Instruct VM to halt |
CorelliumClient.CorelliumApi | v1AgentSystemUnlock | POST /v1/instances/{instanceId}/agent/v1/system/unlock | Unlock Device (iOS Only) |
CorelliumClient.CorelliumApi | v1AgentUninstallApp | POST /v1/instances/{instanceId}/agent/v1/app/apps/{bundleId}/uninstall | Uninstall an App |
CorelliumClient.CorelliumApi | v1AgentUninstallProfile | DELETE /v1/instances/{instanceId}/agent/v1/profile/profiles/{profileId} | Uninstall a Profile from VM |
CorelliumClient.CorelliumApi | v1AgentUploadFile | PUT /v1/instances/{instanceId}/agent/v1/file/device/{filePath} | Upload a file to VM |
CorelliumClient.CorelliumApi | v1AuthLogin | POST /v1/auth/login | Log In |
CorelliumClient.CorelliumApi | v1BtracePreauthorize | GET /v1/instances/{instanceId}/btrace-authorize | Pre-authorize an btrace download |
CorelliumClient.CorelliumApi | v1CheckSubdomainExistence | POST /v1/domain/check | Check the existence of a subdomain |
CorelliumClient.CorelliumApi | v1ClearCoreTrace | DELETE /v1/instances/{instanceId}/strace | Clear CoreTrace logs |
CorelliumClient.CorelliumApi | v1ClearHyperTrace | DELETE /v1/instances/{instanceId}/btrace | Clear HyperTrace logs |
CorelliumClient.CorelliumApi | v1ClearHyperTraceHooks | POST /v1/instances/{instanceId}/hooks/clear | Clear Hooks on an instance |
CorelliumClient.CorelliumApi | v1ClearInstancePanics | DELETE /v1/instances/{instanceId}/panics | Clear Panics |
CorelliumClient.CorelliumApi | v1CreateDomainAuthProvider | POST /v1/domain/{domainId}/auth | Create a new auth provider for a domain |
CorelliumClient.CorelliumApi | v1CreateHook | POST /v1/instances/{instanceId}/hooks | Create hypervisor hook for Instance |
CorelliumClient.CorelliumApi | v1CreateImage | POST /v1/images | Create a new Image |
CorelliumClient.CorelliumApi | v1CreateInstance | POST /v1/instances | Create Instance |
CorelliumClient.CorelliumApi | v1CreateNetworkConnection | POST /v1/network/connections | Create a new Network Connection |
CorelliumClient.CorelliumApi | v1CreateProject | POST /v1/projects | Create a Project |
CorelliumClient.CorelliumApi | v1CreateSnapshot | POST /v1/instances/{instanceId}/snapshots | Create Instance Snapshot |
CorelliumClient.CorelliumApi | v1CreateUser | POST /v1/users | Create User |
CorelliumClient.CorelliumApi | v1DeleteDomainAuthProvider | DELETE /v1/domain/{domainId}/auth/{providerId} | Delete an auth provider from a domain |
CorelliumClient.CorelliumApi | v1DeleteHook | DELETE /v1/hooks/{hookId} | Delete an existing hypervisor hook |
CorelliumClient.CorelliumApi | v1DeleteImage | DELETE /v2/images/{imageId} | Delete Image |
CorelliumClient.CorelliumApi | v1DeleteInstance | DELETE /v1/instances/{instanceId} | Remove Instance |
CorelliumClient.CorelliumApi | v1DeleteInstanceSnapshot | DELETE /v1/instances/{instanceId}/snapshots/{snapshotId} | Delete an Instance Snapshot |
CorelliumClient.CorelliumApi | v1DeleteNetworkConnection | DELETE /v1/network/connections/{id} | Delete an existing Network Connection |
CorelliumClient.CorelliumApi | v1DeleteProject | DELETE /v1/projects/{projectId} | Delete a Project |
CorelliumClient.CorelliumApi | v1DeleteSnapshot | DELETE /v1/snapshots/{snapshotId} | Delete a Snapshot |
CorelliumClient.CorelliumApi | v1DeleteSnapshotPermissions | DELETE /v1/snapshots/{snapshotId}/permissions | Delete member(s) |
CorelliumClient.CorelliumApi | v1DeleteUser | DELETE /v1/users/{userId} | Delete User |
CorelliumClient.CorelliumApi | v1DisableExposePort | POST /v1/instances/{instanceId}/exposeport/disable | Disable an exposed port on an instance for device access. |
CorelliumClient.CorelliumApi | v1DownloadActivity | GET /v1/activity/export/{taskId}/download | Download activity |
CorelliumClient.CorelliumApi | v1EnableExposePort | POST /v1/instances/{instanceId}/exposeport/enable | Enable an exposed port on an instance for device access. |
CorelliumClient.CorelliumApi | v1ExecuteHyperTraceHooks | POST /v1/instances/{instanceId}/hooks/execute | Execute Hooks on an instance |
CorelliumClient.CorelliumApi | v1GetActivityExportStatus | GET /v1/activity/export/{taskId} | Get export task status |
CorelliumClient.CorelliumApi | v1GetActivityExportTasks | GET /v1/activity/export | Get all export tasks for user |
CorelliumClient.CorelliumApi | v1GetConfig | GET /v1/config | Get all configs |
CorelliumClient.CorelliumApi | v1GetDomainAuthProviders | GET /v1/domain/{domainId}/auth | Return all configured auth providers for a domain (including globally configured providers) |
CorelliumClient.CorelliumApi | v1GetHookById | GET /v1/hooks/{hookId} | Get hypervisor hook by id |
CorelliumClient.CorelliumApi | v1GetHooks | GET /v1/instances/{instanceId}/hooks | Get all hypervisor hooks for Instance |
CorelliumClient.CorelliumApi | v1GetImage | GET /v1/images/{imageId} | Get Image Metadata |
CorelliumClient.CorelliumApi | v1GetImages | GET /v1/images | Get all Images Metadata |
CorelliumClient.CorelliumApi | v1GetInstance | GET /v1/instances/{instanceId} | Get Instance |
CorelliumClient.CorelliumApi | v1GetInstanceConsole | GET /v1/instances/{instanceId}/console | Get console websocket URL |
CorelliumClient.CorelliumApi | v1GetInstanceConsoleLog | GET /v1/instances/{instanceId}/consoleLog | Get Console Log |
CorelliumClient.CorelliumApi | v1GetInstanceGpios | GET /v1/instances/{instanceId}/gpios | Get Instance GPIOs |
CorelliumClient.CorelliumApi | v1GetInstancePanics | GET /v1/instances/{instanceId}/panics | Get Panics |
CorelliumClient.CorelliumApi | v1GetInstancePeripherals | GET /v1/instances/{instanceId}/peripherals | Get Instance Peripherals |
CorelliumClient.CorelliumApi | v1GetInstanceScreenshot | GET /v1/instances/{instanceId}/screenshot.{format} | Get Instance Screenshot |
CorelliumClient.CorelliumApi | v1GetInstanceSnapshot | GET /v1/instances/{instanceId}/snapshots/{snapshotId} | Get Instance Snapshot |
CorelliumClient.CorelliumApi | v1GetInstanceSnapshots | GET /v1/instances/{instanceId}/snapshots | Get Instance Snapshots |
CorelliumClient.CorelliumApi | v1GetInstances | GET /v1/instances | Get Instances |
CorelliumClient.CorelliumApi | v1GetModelSoftware | GET /v1/models/{model}/software | Get Software for Model |
CorelliumClient.CorelliumApi | v1GetModels | GET /v1/models | Get Supported Models |
CorelliumClient.CorelliumApi | v1GetNetworkConnection | GET /v1/network/connections/{id} | Return the configuration and per project statuses for a single network provider. |
CorelliumClient.CorelliumApi | v1GetProject | GET /v1/projects/{projectId} | Get a Project |
CorelliumClient.CorelliumApi | v1GetProjectInstances | GET /v1/projects/{projectId}/instances | Get Instances in Project |
CorelliumClient.CorelliumApi | v1GetProjectKeys | GET /v1/projects/{projectId}/keys | Get Project Authorized Keys |
CorelliumClient.CorelliumApi | v1GetProjectNetworkLog | GET /v1/projects/{projectId}/network/log | Retrieve the network connection log for a project |
CorelliumClient.CorelliumApi | v1GetProjectNetworkStatus | GET /v1/projects/{projectId}/network/status | Retrieve the network connection status for a project |
CorelliumClient.CorelliumApi | v1GetProjectVpnConfig | GET /v1/projects/{projectId}/vpnconfig/{format} | Get Project VPN Configuration |
CorelliumClient.CorelliumApi | v1GetProjects | GET /v1/projects | Get Projects |
CorelliumClient.CorelliumApi | v1GetResetLinkInfo | GET /v1/users/reset-link-info | Send Password Reset Link Info |
CorelliumClient.CorelliumApi | v1GetServiceProviderMetadata | GET /v1/auth/providers/:providerId/spmetadata | Get service provider metadata xml from an auth provider |
CorelliumClient.CorelliumApi | v1GetSharedSnapshots | GET /v1/snapshots/shared | Fetch shared snapshots |
CorelliumClient.CorelliumApi | v1GetSnapshot | GET /v1/snapshots/{snapshotId} | Get Snapshot |
CorelliumClient.CorelliumApi | v1InstancesInstanceIdMessagePost | POST /v1/instances/{instanceId}/message | Inject a message into an iOS VM |
CorelliumClient.CorelliumApi | v1InstancesInstanceIdNetdumpPcapGet | GET /v1/instances/{instanceId}/netdump.pcap | Download a netdump pcap file |
CorelliumClient.CorelliumApi | v1InstancesInstanceIdNetworkMonitorPcapGet | GET /v1/instances/{instanceId}/networkMonitor.pcap | Download a Network Monitor pcap file |
CorelliumClient.CorelliumApi | v1Kcrange | GET /v1/instances/{instanceId}/btrace-kcrange | Get Kernel extension ranges |
CorelliumClient.CorelliumApi | v1ListNetworkConnections | GET /v1/network/connections | List available network connections |
CorelliumClient.CorelliumApi | v1ListNetworkInterfaces | GET /v1/network/interfaces | List available physical network interfaces |
CorelliumClient.CorelliumApi | v1ListNetworkProviders | GET /v1/network/providers | List available network providers |
CorelliumClient.CorelliumApi | v1ListThreads | GET /v1/instances/{instanceId}/strace/thread-list | Get Running Threads (CoreTrace) |
CorelliumClient.CorelliumApi | v1MediaPlay | POST /v1/instances/{instanceId}/media/play | Start playing media |
CorelliumClient.CorelliumApi | v1MediaStop | POST /v1/instances/{instanceId}/media/stop | Stop playing media |
CorelliumClient.CorelliumApi | v1PartialUpdateNetworkConnection | PATCH /v1/network/connections/{id} | Update Network Connection (partial) |
CorelliumClient.CorelliumApi | v1PatchInstance | PATCH /v1/instances/{instanceId} | Update Instance |
CorelliumClient.CorelliumApi | v1PauseInstance | POST /v1/instances/{instanceId}/pause | Pause an Instance |
CorelliumClient.CorelliumApi | v1PostInstanceInput | POST /v1/instances/{instanceId}/input | Provide Instance Input |
CorelliumClient.CorelliumApi | v1Ready | GET /v1/ready | API Status |
CorelliumClient.CorelliumApi | v1RebootInstance | POST /v1/instances/{instanceId}/reboot | Reboot an Instance |
CorelliumClient.CorelliumApi | v1RemoveProjectKey | DELETE /v1/projects/{projectId}/keys/{keyId} | Delete Project Authorized Key |
CorelliumClient.CorelliumApi | v1RemoveTeamRoleFromProject | DELETE /v1/roles/projects/{projectId}/teams/{teamId}/roles/{roleId} | Remove team role from project |
CorelliumClient.CorelliumApi | v1RemoveUserFromTeam | DELETE /v1/teams/{teamId}/users/{userId} | Remove user from team |
CorelliumClient.CorelliumApi | v1RemoveUserRoleFromProject | DELETE /v1/roles/projects/{projectId}/users/{userId}/roles/{roleId} | Remove user role from project |
CorelliumClient.CorelliumApi | v1RenameInstanceSnapshot | PATCH /v1/instances/{instanceId}/snapshots/{snapshotId} | Rename an Instance Snapshot |
CorelliumClient.CorelliumApi | v1ResetUserPassword | POST /v1/users/reset-password | Reset User Password |
CorelliumClient.CorelliumApi | v1RestoreBackup | POST /v1/instances/{instanceId}/restoreBackup | Restore backup |
CorelliumClient.CorelliumApi | v1RestoreInstanceSnapshot | POST /v1/instances/{instanceId}/snapshots/{snapshotId}/restore | Restore an Instance Snapshot |
CorelliumClient.CorelliumApi | v1Roles | GET /v1/roles | Get all roles |
CorelliumClient.CorelliumApi | v1RotateInstance | POST /v1/instances/{instanceId}/rotate | Rotate device to specified orientation |
CorelliumClient.CorelliumApi | v1SendUserResetLink | POST /v1/users/send-reset-link | Send Password Reset Link |
CorelliumClient.CorelliumApi | v1SetInstanceGpios | PUT /v1/instances/{instanceId}/gpios | Set Instance GPIOs |
CorelliumClient.CorelliumApi | v1SetInstancePeripherals | PUT /v1/instances/{instanceId}/peripherals | Set Instance Peripherals |
CorelliumClient.CorelliumApi | v1SetInstanceState | PUT /v1/instances/{instanceId}/state | Set state of Instance |
CorelliumClient.CorelliumApi | v1SetSnapshotPermissions | POST /v1/snapshots/{snapshotId}/permissions | Set member list |
CorelliumClient.CorelliumApi | v1ShareSnapshot | POST /v1/snapshots/{snapshotId}/share | Share snapshot |
CorelliumClient.CorelliumApi | v1SnapshotRename | PATCH /v1/snapshots/{snapshotId} | Rename a Snapshot |
CorelliumClient.CorelliumApi | v1StartCoreTrace | POST /v1/instances/{instanceId}/strace/enable | Start CoreTrace on an instance |
CorelliumClient.CorelliumApi | v1StartHyperTrace | POST /v1/instances/{instanceId}/btrace/enable | Start HyperTrace on an instance |
CorelliumClient.CorelliumApi | v1StartInstance | POST /v1/instances/{instanceId}/start | Start an Instance |
CorelliumClient.CorelliumApi | v1StartNetdump | POST /v1/instances/{instanceId}/netdump/enable | Start Enhanced Network Monitor on an instance. |
CorelliumClient.CorelliumApi | v1StartNetworkMonitor | POST /v1/instances/{instanceId}/sslsplit/enable | Start Network Monitor on an instance. |
CorelliumClient.CorelliumApi | v1StopCoreTrace | POST /v1/instances/{instanceId}/strace/disable | Stop CoreTrace on an instance. |
CorelliumClient.CorelliumApi | v1StopHyperTrace | POST /v1/instances/{instanceId}/btrace/disable | Stop HyperTrace on an instance. |
CorelliumClient.CorelliumApi | v1StopInstance | POST /v1/instances/{instanceId}/stop | Stop an Instance |
CorelliumClient.CorelliumApi | v1StopNetdump | POST /v1/instances/{instanceId}/netdump/disable | Stop Enhanced Network Monitor on an instance. |
CorelliumClient.CorelliumApi | v1StopNetworkMonitor | POST /v1/instances/{instanceId}/sslsplit/disable | Stop Network Monitor on an instance. |
CorelliumClient.CorelliumApi | v1TeamChange | PATCH /v1/teams/{teamId} | Update team |
CorelliumClient.CorelliumApi | v1TeamCreate | POST /v1/teams | Create team |
CorelliumClient.CorelliumApi | v1TeamDelete | DELETE /v1/teams/{teamId} | Delete team |
CorelliumClient.CorelliumApi | v1Teams | GET /v1/teams | Get teams |
CorelliumClient.CorelliumApi | v1UnpauseInstance | POST /v1/instances/{instanceId}/unpause | Unpause an Instance |
CorelliumClient.CorelliumApi | v1UpdateDomainAuthProvider | PUT /v1/domain/{domainId}/auth/{providerId} | Update an auth provider for a domain |
CorelliumClient.CorelliumApi | v1UpdateHook | PUT /v1/hooks/{hookId} | Update an existing hypervisor hook |
CorelliumClient.CorelliumApi | v1UpdateNetworkConnection | PUT /v1/network/connections/{id} | Update Network Connection |
CorelliumClient.CorelliumApi | v1UpdateProject | PATCH /v1/projects/{projectId} | Update a Project |
CorelliumClient.CorelliumApi | v1UpdateProjectSettings | PATCH /v1/projects/{projectId}/settings | Change Project Settings |
CorelliumClient.CorelliumApi | v1UpdateUser | PATCH /v1/users/{userId} | Update User |
CorelliumClient.CorelliumApi | v1UpgradeInstance | POST /v1/instances/{instanceId}/upgrade | Upgrade iOS version |
CorelliumClient.CorelliumApi | v1UploadImageData | POST /v1/images/{imageId} | Upload Image Data |
CorelliumClient.CorelliumApi | v1UserAgreeTerms | POST /v1/users/agree | Consent to the current terms and conditions |
CorelliumClient.CorelliumApi | v1UsersChangePasswordPost | POST /v1/users/change-password | Change User Password |
CorelliumClient.CorelliumApi | v1UsersLogin | POST /v1/users/login | Log In |
CorelliumClient.CorelliumApi | v1WebPlayerAllowedDomains | GET /v1/webplayer/allowedDomains | Retrieve the list of allowed domains for all Webplayer sessions |
CorelliumClient.CorelliumApi | v1WebPlayerCreateSession | POST /v1/webplayer | Create a new Webplayer Session |
CorelliumClient.CorelliumApi | v1WebPlayerDestroySession | DELETE /v1/webplayer/{sessionId} | Tear down a Webplayer Session |
CorelliumClient.CorelliumApi | v1WebPlayerListSessions | GET /v1/webplayer | List all Webplayer sessions |
CorelliumClient.CorelliumApi | v1WebPlayerSessionInfo | GET /v1/webplayer/{sessionId} | Retrieve Webplayer Session Information |
CorelliumClient.CorelliumApi | v2GetInstanceQuickConnectCommand | GET /v2/instances/{instanceId}/quickConnectCommand | Recommended SSH Command for Quick Connect |
CorelliumClient.CorelliumApi | v2GetInstanceState | GET /v2/instances/{instanceId}/state | Get state of Instance |
FAQs
Corellium Client API
The npm package @corellium/client-api receives a total of 43 weekly downloads. As such, @corellium/client-api popularity was classified as not popular.
We found that @corellium/client-api demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.
Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.