action pocketsmith_delete_institutions_id { label: "Delete institution" description: "Deletes an institution and all data within. Alternatively, another institution can be provided to merge the data into to avoid losing it." provider: pocketsmith method: DELETE path: "/institutions/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" } merge_into_institution_id: { type: "integer" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }