# fluent-cart/1.5.3/app/Modules/PaymentMethods/StripeGateway/API/Account.php

FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler, version 1.5.3. 15 lines.

- Page: https://pluginprobe.com/plugins/fluent-cart/1.5.3/code/app/Modules/PaymentMethods/StripeGateway/API/Account.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.5.3/raw/app/Modules/PaymentMethods/StripeGateway/API/Account.php
- Modified: 2025-10-14T16:36:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluent-cart/1.5.3/code/app/Modules/PaymentMethods/StripeGateway/API/Account.php#L10-L20`.

```php
<?php

namespace FluentCart\App\Modules\PaymentMethods\StripeGateway\API;

class Account
{
    use RequestProcessor;
    public static function retrive($accountId, $key)
    {
        ApiRequest::set_secret_key($key);
        $account = ApiRequest::retrieve('accounts/'.$accountId);
        return self::processResponse($account);
    }
}

```
