action pocketsmith_get_institutions_id { label: "Get institution" description: "Gets an institution by its ID." provider: pocketsmith method: GET path: "/institutions/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" } } 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." } } } }