Skip to main content
POST
/
devices
/
{deviceId}
/
apps
JavaScript
import Mobilerun from '@mobilerun/sdk';

const client = new Mobilerun({
  apiKey: process.env['MOBILERUN_CLOUD_API_KEY'], // This is the default and can be omitted
});

await client.devices.apps.install('deviceId', { bundleId: 'x' });
{
  "$schema": "<string>",
  "detail": "<string>",
  "errors": [
    {
      "location": "<string>",
      "message": "<string>",
      "value": "<unknown>"
    }
  ],
  "instance": "<string>",
  "status": 123,
  "title": "<string>",
  "type": "about:blank"
}

Authorizations

Authorization
string
header
required

Bearer token via Authorization header

Headers

X-Device-Display-ID
integer<int64>
default:0
Required range: x >= 0

Path Parameters

deviceId
string
required

Body

application/json
bundleId
string
required

iOS bundle identifier (e.g. com.example.app)

Minimum string length: 1
packageName
string

Android package name (e.g. com.example.app)

Minimum string length: 1

Response

No Content