updateGroup
Modify metadata for existing Pinata groups to update names or network settings using the group's unique ID.
Instructions
Update metadata for an existing group on Pinata
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| network | No | Whether the group is in public or private IPFS | public |
| id | Yes | The unique ID of the group to update | |
| name | No | New name for the group |
Implementation Reference
- src/index.ts:799-806 (schema)Input schema for updateGroup tool - defines network, id, and optional name parameters using zod validation
{ network: z .enum(["public", "private"]) .default("public") .describe("Whether the group is in public or private IPFS"), id: z.string().describe("The unique ID of the group to update"), name: z.string().optional().describe("New name for the group"), },