Get info for an existing private group
import { PinataSDK } from "pinata"; const pinata = new PinataSDK({ pinataJwt: process.env.PINATA_JWT!, pinataGateway: "example-gateway.mypinata.cloud", }); const groups = await pinata.groups.private.get({ groupId: "3778c10d-452e-4def-8299-ee6bc548bdb0", });
type GroupResponseItem = { id: string; name: string; created_at: string; };
string
ID for the target Group
const groups = await pinata.groups.private.get({ groupId: "3778c10d-452e-4def-8299-ee6bc548bdb0", });