Using js-genai with googleapis.com

TypeScript integration

✓ Official SDK
Install
npm install js-genai
Quick start
import Js_genai from 'js-genai';

const client = new Js_genai({ accessToken: "YOUR_ACCESS_TOKEN" });
Gets a single entity row matching the entity type and entity id specified in …
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://connectors.googleapis.com/v2/{name}
Gets the schema of all the actions supported by the connector.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://connectors.googleapis.com/v2/{parent}/actions
Lists entity rows of a particular entity type contained in the request. Note:…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://connectors.googleapis.com/v2/{parent}/entities
SDK on GitHub 📄 API Docs
SDK
js-genai
TypeScript
API
googleapis.com
googleapis.com:connectors
At a glance
Language TypeScript
Endpoints11
Base URLhttps://connectors.googleapis.com
✓ Official