How to delete a "Recurly" account completely from ruby api
- by Subrahmanyam Konduri
Can anyone please tell me how to delete a recurly account. As, I have tried with the following commands,
r = Recurly::Account.find(account_code)
r.delete
And also, I have tried with "r.destroy".
But, it only changing the state of recurly account from "active" to "closed" and not deleting the account completely.
I am using rails 2.3.11 for this application.
Thanks in advance.
K. Subrahmanyam.