'authorization_code', 'code' => $code, ]); // Access the connected account id in the response $connected_account_id = $response->stripe_user_id; return $response; //return $connected_account_id; } /** * Revokes access to Stripe from Invoice Ninja * for the given account id */ public function revoke($account_id) { Stripe::setApiKey(config('ninja.ninja_stripe_key')); \Stripe\OAuth::deauthorize([ 'client_id' => config('ninja.ninja_stripe_key'), 'stripe_user_id' => $account_id, ]); } }