Menu

Update Installation

PATCHhttps://api.vercel.com/v1/installations/{integrationConfigurationId}
This endpoint updates an integration installation.
https://api.vercel.com/v1/installations/{integrationConfigurationId}
const response = await fetch('https://api.vercel.com/v1/installations/string', {
method: 'PATCH',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json',
},
body: JSON.stringify({
"status": "ready",
"externalId": "string",
"billingPlan": {
"id": "string",
"type": "prepayment",
"name": "string",
"description": "string",
"paymentMethodRequired": "true",
"cost": "string",
"details": [],
"highlightedDetails": [],
"effectiveDate": "string"
},
"notification": "value"
}),
});
const data = await response.json();
console.log(data);
Response
{}
AuthorizationbearerToken

Default authentication mechanism

integrationConfigurationIdstringRequired

This endpoint expects an object.

statusstringOptional
externalIdstringOptional
billingPlanobjectOptional
notificationobjectOptional
A notification to display to your customer. Send null to clear the current notification.

No response body

400One of the provided values in the request body is invalid. One of the provided values in the request query is invalid.
401The request is not authorized.
403You do not have permission to access this resource.
404Error
Update Installation | Vercel API