Skip to main content
POST
/
v1
/
projects
/
{idOrName}
/
client-cert
uploadProjectClientCert
import { Vercel } from "@vercel/sdk";  const vercel = new Vercel({  bearerToken: "<YOUR_BEARER_TOKEN_HERE>", });  async function run() {  const result = await vercel.projects.uploadProjectClientCert({  idOrName: "prj_XLKmu1DyR1eY7zq8UgeRKbA7yVLA",  teamId: "team_1a2b3c4d5e6f7g8h9i0j1k2l",  slug: "my-team-url-slug",  requestBody: {  cert: "-----BEGIN CERTIFICATE-----\\n...\\n-----END CERTIFICATE-----",  key: "-----BEGIN PRIVATE KEY-----\\n...\\n-----END PRIVATE KEY-----",  ca: "-----BEGIN CERTIFICATE-----\\n...\\n-----END CERTIFICATE-----",  origin: "https://api.example.com",  },  });   console.log(result); }  run();
{  "origin": "<string>",  "certId": "<string>" }

Authorizations

Authorization
string
header
required

Default authentication mechanism

Path Parameters

idOrName
string
required

The unique project identifier or the project name

Example:

"prj_XLKmu1DyR1eY7zq8UgeRKbA7yVLA"

Query Parameters

teamId
string

The Team identifier to perform the request on behalf of.

Example:

"team_1a2b3c4d5e6f7g8h9i0j1k2l"

slug
string

The Team slug to perform the request on behalf of.

Example:

"my-team-url-slug"

Body

application/json
cert
string
required

The client certificate in PEM format

Example:

"-----BEGIN CERTIFICATE-----\\\\n...\\\\n-----END CERTIFICATE-----"

key
string
required

The private key in PEM format

Example:

"-----BEGIN PRIVATE KEY-----\\\\n...\\\\n-----END PRIVATE KEY-----"

ca
string

The certificate authority in PEM format

Example:

"-----BEGIN CERTIFICATE-----\\\\n...\\\\n-----END CERTIFICATE-----"

origin
string

The origin this certificate should be used for. If not specified, the certificate will be project-wide.

Example:

"https://api.example.com"

skipValidation
boolean

Skip validation of the certificate

Response

Client certificate uploaded successfully

origin
string
required
certId
string
required
⌘I