GET
/
v1
/
installations
/
{integrationConfigurationId}
/
resources
get-integration-resources
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();
{
  "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

Authorization
string
header
required

Default authentication mechanism

Path Parameters

integrationConfigurationId
string
required

Response

200
application/json

The response is of type object.