🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@robinpath/google-contacts

Package Overview
Dependencies
Maintainers
4
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@robinpath/google-contacts

Google Contacts (People API v1) integration — list / search / batch-get / create / update / delete personal contacts, enumerate 'Other contacts' and Workspace directory, manage contact groups. Supports delegated OAuth2 access tokens (with refresh-token ro

latest
npmnpm
Version
0.3.0
Version published
Maintainers
4
Created
Source

@robinpath/google-contacts

Google Contacts module for RobinPath.

Category Functions Auth License

Why use this module?

The google-contacts module lets you:

  • listContacts
  • getContact
  • createContact
  • updateContact
  • deleteContact

All functions are callable directly from RobinPath scripts with a simple, consistent API.

Installation

robinpath add @robinpath/google-contacts

Quick Start

1. Set up credentials

google-contacts.setCredentials "your-credentials"

2. listContacts

google-contacts.listContacts

Available Functions

FunctionDescription
google-contacts.setCredentialsConfigure google-contacts credentials.
google-contacts.listContactslistContacts
google-contacts.getContactgetContact
google-contacts.createContactcreateContact
google-contacts.updateContactupdateContact
google-contacts.deleteContactdeleteContact
google-contacts.searchContactssearchContacts
google-contacts.listContactGroupslistContactGroups
google-contacts.getContactGroupgetContactGroup
google-contacts.createContactGroupcreateContactGroup
google-contacts.updateContactGroupupdateContactGroup
google-contacts.deleteContactGroupdeleteContactGroup
google-contacts.batchGetContactsbatchGetContacts
google-contacts.getOtherContactsgetOtherContacts
google-contacts.getProfilegetProfile
google-contacts.listDirectoryPeoplelistDirectoryPeople
google-contacts.updateContactPhotoupdateContactPhoto

Examples

listContacts

google-contacts.listContacts

getContact

google-contacts.getContact

createContact

google-contacts.createContact

Integration with RobinPath

import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/google-contacts";

const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);

const result = await rp.executeScript(`
  google-contacts.setCredentials "your-credentials"
  google-contacts.listContacts
`);

Full API Reference

See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.

License

MIT

Keywords

googlecontacts

FAQs

Package last updated on 06 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts