action yodlee_delete_account { label: "Delete Account" description: "The delete account service allows an account to be deleted.
This service does not return a response. The HTTP response code is 204 (Success with no content).
" provider: yodlee method: DELETE path: "/accounts/{accountId}" encoding: json input: { type: "object" properties: { accountId: { type: "integer" format: "int64" } } required: ["accountId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }