GetDeploymentsCreator
August 17, 2026 ยท View on GitHub
Metadata information of the deployment creator.
Example Usage
import { GetDeploymentsCreator } from "@vercel/sdk/models/getdeploymentsop.js";
let value: GetDeploymentsCreator = {
uid: "eLrCnEgbKhsHyfbiNR7E8496",
email: "example@example.com",
username: "johndoe",
githubLogin: "johndoe",
gitlabLogin: "johndoe",
};
Fields
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
uid | string | :heavy_check_mark: | Stable creator id across principal types. This may be a user ID, an app ID, an integration configuration ID, or system. | eLrCnEgbKhsHyfbiNR7E8496 |
type | models.GetDeploymentsDeploymentsType | :heavy_minus_sign: | Principal type of the deployment creator. Defaults to "user" if absent (legacy deployments created before principal attribution was recorded). | |
email | string | :heavy_minus_sign: | The email address of the user. | example@example.com |
username | string | :heavy_minus_sign: | The username of the user. | johndoe |
githubLogin | string | :heavy_minus_sign: | The GitHub login of the user. | johndoe |
gitlabLogin | string | :heavy_minus_sign: | The GitLab login of the user. | johndoe |