action journy_delete_account { label: "Delete account" description: "Endpoint used to delete an account." provider: journy method: DELETE path: "/accounts" encoding: json input: { type: "object" description: "Delete an account" required: ["identification"] properties: { identification: { type: "object" description: "Account identification requires an accountId, domain or both" properties: { accountId: { type: "string" format: "account-id" description: "Unique identifier for the account in your database" } domain: { type: "string" format: "top-level-domain" description: "The domain associated with the account (e.g. acme-inc.com)" } } } } } output: { type: "object" } }