Typescript
import { Vercel } from "@vercel/sdk"; const vercel = new Vercel({ bearerToken: "<YOUR_BEARER_TOKEN_HERE>", }); async function run() { const result = await vercel.marketplace.getIntegrationResource({ integrationConfigurationId: "<id>", resourceId: "<id>", }); console.log(result); } run();
{ "id": "<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": {} }
Get a resource by its partner ID.
Default authentication mechanism
The ID of the integration configuration (installation) the resource belongs to
The ID provided by the 3rd party provider for the given resource
The response is of type object.
object