action pocketsmith_post_users_id_institutions { label: "Create institution in user" description: "Creates an institution belonging to a user." provider: pocketsmith method: POST path: "/users/{id}/institutions" encoding: json input: { type: "object" properties: { currency_code: { type: "string" description: "A currency code for the institution." } id: { type: "integer" } title: { type: "string" description: "A title for the institution." } } required: ["currency_code", "id", "title"] 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." } } } }