Hi -- I'm using the `Google::Apis::ContentV2::ShoppingContentService` (in the Ruby API) to create sub-accounts and upload datafeeds to them.
This is working fine.
However, I need to be able to delete a bunch of sub-accounts, as we've hit the limit of sub-accounts that we can use.
So I wrote a quick script to do this using the same credentials that we use to create sub-accounts. The method on the Ruby API object is `#delete_account(merchant_id, sub_account_merchant_id, ...)`.
However that fails with an `Google::Apis::AuthorizationError: Unauthorized` error.
Do I need to use another scope to delete sub-accounts?
Or is there something else I'm missing?
Thanks for any and all advice!
Doug.