CreateDeployBody

Request body for creating a Deploy.

Definition

TypeScript
interface CreateDeployBody {
  buildId?: string | undefined;
  appId?: string | undefined;
}

Fields

FieldTypeNotes
buildIdstring | undefinedoptional — Build to deploy. When omitted, deploys the most recent successful build of the app's default version (requires appId).
appIdstring | undefinedoptional — Deploy the latest successful build of this app's default version. Mutually exclusive with buildId.