Endpoints
- access-groups
- artifacts
- checks
- projects
- deployments
- domains
- dns
- edge-config
- user
- marketplace
- GETGet Account Information
- GETGet Member Information
- POSTCreate Event
- GETGet Integration Resources
- GETGet Integration Resource
- PUTImport Resource
- DELDelete Integration Resource
- POSTSubmit Billing Data
- POSTSubmit Invoice
- GETGet Invoice
- POSTInvoice Actions
- POSTSubmit Prepayment Balances
- PUTUpdate Resource Secrets (Deprecated)
- PUTUpdate Resource Secrets
- POSTCreate one or multiple experimentation items
- DELDelete an existing experimentation item
- PATCHPatch an existing experimentation item
- PUTPush data into a user-provided Edge Config
- HEADGet the data of a user-provided Edge Config
- GET
- integrations
- authentication
- logDrains
- logs
- projectMembers
- environment
- rolling-release
- security
- teams
- webhooks
- aliases
- certs
marketplace
Get Integration Resources
Get all resources for a given installation ID.
GET
/
v1
/
installations
/
{integrationConfigurationId}
/
resources
get-integration-resources
Copy
Ask AI
import { Vercel } from "@vercel/sdk";
const vercel = new Vercel({
bearerToken: "<YOUR_BEARER_TOKEN_HERE>",
});
async function run() {
const result = await vercel.marketplace.getIntegrationResources({
integrationConfigurationId: "<id>",
});
console.log(result);
}
run();
Copy
Ask AI
{
"resources": [
{
"partnerId": "<string>",
"internalId": "<string>",
"name": "<string>",
"status": "ready",
"productId": "<string>",
"protocolSettings": {
"experimentation": {
"edgeConfigSyncingEnabled": true,
"edgeConfigId": "<string>",
"edgeConfigTokenId": "<string>"
}
},
"notification": {
"level": "error",
"title": "<string>",
"message": "<string>",
"href": "<string>"
},
"billingPlanId": "<string>",
"metadata": {}
}
]
}
Authorizations
Default authentication mechanism
Path Parameters
Response
200
application/json
The response is of type object
.
get-integration-resources
Copy
Ask AI
import { Vercel } from "@vercel/sdk";
const vercel = new Vercel({
bearerToken: "<YOUR_BEARER_TOKEN_HERE>",
});
async function run() {
const result = await vercel.marketplace.getIntegrationResources({
integrationConfigurationId: "<id>",
});
console.log(result);
}
run();
Copy
Ask AI
{
"resources": [
{
"partnerId": "<string>",
"internalId": "<string>",
"name": "<string>",
"status": "ready",
"productId": "<string>",
"protocolSettings": {
"experimentation": {
"edgeConfigSyncingEnabled": true,
"edgeConfigId": "<string>",
"edgeConfigTokenId": "<string>"
}
},
"notification": {
"level": "error",
"title": "<string>",
"message": "<string>",
"href": "<string>"
},
"billingPlanId": "<string>",
"metadata": {}
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.