action pendo_delete_users_id { label: "Delete a User" description: "This removes most traces of a User's existence from the system. For an EndUser you might want to consider just letting them churn after a period of inactivity." provider: pendo method: DELETE path: "/users/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }