GetDeploymentsPlatform

June 9, 2026 ยท View on GitHub

Metadata about the source platform that triggered the deployment.

Example Usage

import { GetDeploymentsPlatform } from "@vercel/sdk/models/getdeploymentsop.js";

let value: GetDeploymentsPlatform = {
  source: {
    name: "<value>",
  },
  origin: {
    type: "id",
    value: "<value>",
  },
  creator: {
    name: "<value>",
  },
};

Fields

FieldTypeRequiredDescription
sourcemodels.GetDeploymentsDeploymentsSource:heavy_check_mark:The external platform that created the deployment (e.g. its display name).
originmodels.GetDeploymentsOrigin:heavy_check_mark:Reference back to the entity on the platform that initiated the deployment.
creatormodels.GetDeploymentsDeploymentsCreator:heavy_check_mark:The user on the external platform who triggered the deployment.
metaRecord<string, string>:heavy_minus_sign:Arbitrary key-value metadata provided by the platform.