action pocketsmith_get_users_id_institutions { label: "List institutions in user" description: "Lists all the institutions belonging to the user." provider: pocketsmith method: GET path: "/users/{id}/institutions" encoding: json input: { type: "object" properties: { id: { type: "integer" } } required: ["id"] additionalProperties: false } output: { type: "array" items: { 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." } } } } }