action pocketsmith_put_institutions_id { label: "Update institution" description: "Updates the title and currency code for an institution." provider: pocketsmith method: PUT path: "/institutions/{id}" encoding: json input: { type: "object" properties: { currency_code: { type: "string" description: "A new currency code for the institution." } id: { type: "integer" } title: { type: "string" description: "A new title for the institution." } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { created_at: { type: "string" description: "When the institution was created." } currency_code: { type: "string" description: "The currency code of the institution." } id: { type: "integer" description: "The unique identifier of the institution." } title: { type: "string" description: "The title of the institution." } updated_at: { type: "string" description: "When the institution was last updated." } } } }