POST
/
v4
/
deployment-packages
/
{account_id}
/
install_async
import SGPClient from 'sgp';

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

async function main() {
  const deploymentPackageJob = await client.deploymentPackages.installAsync('account_id');

  console.log(deploymentPackageJob.deployment_package_job_id);
}

main();
{
  "deployment_package_job_id": "<string>",
  "account_id": "<string>"
}

Authorizations

x-api-key
string
header
required

Path Parameters

account_id
string
required

Body

application/json

Response

200
application/json

Successful Response

The response is of type object.