action journy_delete_user { label: "Delete user" description: "Endpoint to delete a user." provider: journy method: DELETE path: "/users" encoding: json input: { type: "object" description: "Delete a user" required: ["identification"] properties: { identification: { type: "object" description: "User identification requires a userId, email or both" properties: { email: { type: "string" format: "email" description: "Email address of the user" } userId: { type: "string" format: "user-id" description: "Unique identifier for the user in your database" } } } } } output: { type: "object" } }